I apologize in advance for my noobness. I tried to create a new project with "django-admin.py startproject blah" and I got an error saying "startproject" is an unknown option for django-admin.py. This can't be normal. I then did "django-admin.py help" and viewed the possible arguments, and they were the same as the arguments for manage.py (startapp, sqlall, sqlflush). What on earth is going on?
|
|
|||||||
|
|
|
If you are already in a project,
|
||||||
|
|
|
From the Django Documentation: [startproject] is disabled [...] when the environment variable DJANGO_SETTINGS_MODULE has been set. To re-enable it in these situations, [...] unset DJANGO_SETTINGS_MODULE. I ran across this just the other day and it caused me some amount of groaning when I finally figured it out. |
||
