From d543e22e93a901227dcfd32a139a788a302a17b6 Mon Sep 17 00:00:00 2001 From: Aymeric Barantal Date: Fri, 21 Nov 2014 23:19:31 +0100 Subject: [PATCH] enhance README with some basic django commands for testing --- README | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README b/README index 816e2dc..647088c 100644 --- a/README +++ b/README @@ -16,4 +16,18 @@ python setup.py install Edit settings.py according to what type of database you want to use and others settings related to your environment. -See django configuration. +## Synchronize database + +./manage.py syncdb + +it will ask for creation of a superuser + +If syncdb ran previously, commands are: +./manage.py makemigrations +./manage.py syncdb + +## Test + +./manage.py runserver + +Then open your browser to http://127.0.0.1/admin \ No newline at end of file -- GitLab