diff options
-rw-r--r-- | README.rst | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -50,10 +50,13 @@ Create a symlink to the development settings:: (sublab_website)$ cd sublab_project (sublab_website)$ ln -s ../conf/dev_settings.py local_settings.py -Now create the database:: +Now create the database and run the migrations:: - (sublab_website)$ ./manage.py syncdb - (sublab_website)$ ./manage.py migrate + (sublab_website)$ ./manage.py syncdb --noinput --migrate + +Then create a superuser:: + + (sublab_website)$ $ ./manage.py createsuperuser Finally start the development webserver:: |