From 517918060ae423156493cf91ad50fbf5a48f99b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 1 Jul 2015 19:15:50 +0200 Subject: [PATCH] doc: mention manage.py migrate and runserver --- README | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README b/README index 63835bdb..515641ce 100644 --- a/README +++ b/README @@ -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 ------------