minor readme update

This commit is contained in:
Konstantin Martini 2015-01-03 03:14:53 +01:00
parent c3d3b208af
commit d9962471dd
1 changed files with 8 additions and 7 deletions

View File

@ -8,17 +8,18 @@ We are developing a python3 django app.
Installation
------------
On a Debian System install:
sudo aptitude install python3-django
On a Debian System install: python3-django sqlite
Install suggested dependcies as well (sqlite).
then run:
python3 manage.py syncdb
python3 manage.py runserver
then run (in the repo root):
You can reach the server now via
./manage.py syncdb
http://127.0.0.1:8000/
create an admin user for the new django database, then run
./manage.py runserver
and you should already be able to access it at: http://localhost:8000/
If you don't know nothing about django yet, we strongly suggest you read the tutorial:
https://docs.djangoproject.com/en/1.7/intro/tutorial01/