Re: [mezzanine-users] creating projects with latest build

2015-07-14 Thread Stephen McDonald
I vaguely think this used to occur in relation with Django's syncdb command, and now the sequence of tools used with createdb is different enough that it doesn't pick this up anymore. I've got that working again by manually calling createsuperuser here:

Re: [mezzanine-users] creating projects with latest build

2015-07-10 Thread Stephen McDonald
I recall that too, but it may have been an older Django feature. On Fri, Jul 10, 2015 at 5:24 PM, Brandon Keith Biggs brandonkeithbi...@gmail.com wrote: Hello, If I'm not mistaken older versions ask you if you would like to create the super user. I've always used python manage.py createdb

Re: [mezzanine-users] creating projects with latest build

2015-07-10 Thread Brandon Keith Biggs
Hello, If I'm not mistaken older versions ask you if you would like to create the super user. I've always used python manage.py createdb and been able to set my username and password. thanks, Brandon Keith Biggs http://www.brandonkeithbiggs.com/ On 7/10/2015 7:24 AM, Stephen McDonald wrote: I

Re: [mezzanine-users] creating projects with latest build

2015-07-09 Thread Stephen McDonald
I can confirm the usual admin/default superuser is created, but you're not prompted for it without --noinput, which is what I expected also. I also checked older versions of Mezzanine and it appears that's always been the case. On Fri, Jul 10, 2015 at 1:12 PM, Danny molo...@gmail.com wrote: If

[mezzanine-users] creating projects with latest build

2015-07-09 Thread Brandon Keith Biggs
Hello, I just created a project with the latest build and I did not get asked to create a super-user. There are also no setting files in my project. I did: mezzanine-project project1 cd project1 python manage.py createdb python manage.py runserver and my site went up perfectly, but no

Re: [mezzanine-users] creating projects with latest build

2015-07-09 Thread Danny
If you look in https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/core/management/commands/createdb.py You'll see it should create the default admin user as 'admin' with password 'default'. Try to log in to the admin side with that. Although, I would have thought that unless you