From 79d09a3f1b5b1d2fe1779a2b6b104eb30e5dbe80 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Mon, 1 Aug 2016 19:45:09 +1200 Subject: [PATCH] Use python3 commands in README If you're in a virtualenv it doesn't make a difference, but outside of one it will. Signed-off-by: Paul Eggleton --- README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index fa5c3b2..8437089 100644 --- a/README +++ b/README @@ -47,15 +47,15 @@ Setup instructions: 2. Run the following commands within the layerindex-web directory to initialise the database: - python manage.py syncdb - python manage.py migrate + python3 manage.py syncdb + python3 manage.py migrate You should answer "yes" when asked to create an admin account. 3. You can test the web application locally by setting DEBUG = True in settings.py and running the following: - python manage.py runserver + python3 manage.py runserver Then visit http://127.0.0.1:8000/layerindex/ with your browser. As with all Django applications there is an admin interface available