No description
Find a file
2012-12-15 14:43:36 +01:00
docs First POC 2012-11-20 10:47:19 +01:00
youmap Remove js call from template 2012-12-15 14:43:36 +01:00
.gitignore First POC 2012-11-20 10:47:19 +01:00
fabfile.py Use stable branch of Leaflet now on 2012-12-13 14:26:28 +01:00
manage.py First POC 2012-11-20 10:47:19 +01:00
MANIFEST.in Make it pip installable 2012-11-22 11:55:22 +01:00
README.rst Working on README 2012-11-26 21:32:51 +01:00
requirements.pip Add endless_pagination on home page 2012-12-07 13:40:57 +01:00
setup.py Make it pip installable 2012-11-22 11:55:22 +01:00

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 <https://github.com/yohanboniface/django-chickpea>`_, built on top of Django and Leaflet.


Quickstart
----------

Create a geo aware database. See `Geodjango doc <https://docs.djangoproject.com/en/dev/ref/contrib/gis/install/>`_ 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