Skip to content
Extraits de code Groupes Projets
avatar de l'utilisateur
Yohan Boniface rédigé
47f68321
Historique
Nom Dernière validation Dernière mise à jour
docs
youmap
.gitignore
MANIFEST.in
README.rst
fabfile.py
manage.py
requirements.pip
setup.py

YouMap project

About

YouMap let you create map with OpenStreetMap layers in a minute and embed them in your site. Be cause we think that the more OSM will be used, the more OSM will be ''cured''. It uses django-chickpea, built on top of Django and Leaflet.

Quickstart

Create a geo aware database. See Geodjango doc for backend installation.

Create a virtualenv:

mkvirtualenv youmap

Install dependencies and project:

cd path/to/youmap/repository
pip install -r requirements.pip
pip install -e .

Create a default local settings file:

touch youmap/settings/local.py

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