Correct command to start server in README

It should be

 python manage.py runserver

rather than

 python manage runserver

Change-Id: I8a351c3a1af93bfdae17142616a4c57a98aec072
This commit is contained in:
David Pursehouse 2015-10-01 11:23:28 +09:00
parent beb3ff7e26
commit b9b3330799
1 changed files with 1 additions and 1 deletions

2
README
View File

@ -61,6 +61,6 @@ that path in the manage.py by modifiing ``dburi``.
Now start the development server::
python manage runserver
python manage.py runserver
Enjoy!