summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst9
1 files changed, 6 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 258c481..2681367 100644
--- a/README.rst
+++ b/README.rst
@@ -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::