Skip to content

Commit

Permalink
Added the pip install instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
belug23 committed Jan 27, 2013
1 parent d571077 commit 99f332f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Expand Up @@ -10,20 +10,23 @@ Quick start

Contrib Admin is required.

1. Add "geoprisma_config" to your INSTALLED_APPS setting like this::
1. Install geoprisma_config:
pip isntall geoprisma_config

2. Add "geoprisma_config" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = (
...
'geoprisma_config',
)

2. Include the geoprisma_config URLconf in your project urls.py like this::
3. Include the geoprisma_config URLconf in your project urls.py like this::

url(r'^geoprisma_config/', include('geoprisma_config.urls')),

3. Run `python manage.py syncdb` to create the geoprisma_config models.
4. Run `python manage.py syncdb` to create the geoprisma_config models.

4. Start the development server and visit http://127.0.0.1:8000/admin/
5. Start the development server and visit http://127.0.0.1:8000/admin/
to manage your geoprisma configs (you'll need the Admin app enabled).

Production Setup
Expand Down

0 comments on commit 99f332f

Please sign in to comment.