doc: mention manage.py migrate and runserver

This commit is contained in:
Frédéric Péters 2015-07-01 19:15:50 +02:00
parent ad48116028
commit 517918060a
1 changed files with 6 additions and 1 deletions

7
README
View File

@ -12,9 +12,14 @@ Dependencies can be installed with pip,
$ pip install -r requirements.txt
It's then required to get the database configured (./manage.py syncdb); by
It's then required to get the database configured (./manage.py migrate); by
default it will create a db.sqlite3 file.
You can then run the Django test server for a quick try (you should refer to
the Django documentation for production deployments).
$ ./manage.py runserver
Architecture
------------