From cb3b388fb66c9568b413aaa84c7240f7f4836c3f Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Mon, 26 Nov 2012 21:32:51 +0100 Subject: [PATCH] Working on README --- README.rst | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 995c0ee3..8dcf47eb 100644 --- a/README.rst +++ b/README.rst @@ -11,12 +11,35 @@ It uses `django-chickpea `_, b Quickstart ---------- -To bootstrap the project:: +Create a geo aware database. See `Geodjango doc `_ for backend installation. + +Create a virtualenv:: + + mkvirtualenv youmap + +Install dependencies and project:: - virtualenv youmap - source youmap/bin/activate cd path/to/youmap/repository pip install -r requirements.pip pip install -e . + +Create a default local settings file:: + touch youmap/settings/local.py - manage.py syncdb + +Add database connexion informations in `local.py`, for example:: + + DATABASES = { + 'default': { + 'ENGINE': 'django.contrib.gis.db.backends.postgis', + 'NAME': 'youmap', + } + } + +Create the tables:: + + python manage.py syncdb + +Start the server:: + + python manage.py runserver 0.0.0.0:8000