No description
Find a file
2014-05-11 13:29:42 +02:00
.tx Remove useless template, clean translation, add Transifex config 2013-11-22 15:32:21 +01:00
umap Get rid of sesql and upgrade to django 1.6 2014-05-02 00:13:33 +02:00
.gitignore Manage osmfr server with fabfile 2013-07-10 23:46:24 +02:00
.gitmodules First shot in removing jQuery and Foundation (\o/) cf #12 2013-02-12 17:34:33 +01:00
.pipignore Upgrade django-social-auth to python-social-auth 2014-03-06 23:22:37 +01:00
fabfile.py Add leaflet-heat 2014-04-20 17:42:18 +02:00
LICENSE Fixed typo 2013-06-23 22:43:29 -05:00
manage.py Get rid of sesql and upgrade to django 1.6 2014-05-02 00:13:33 +02:00
MANIFEST.in Update very very old MANIFEST.in 2014-04-23 22:23:38 +02:00
README.rst Fix wrong tag in README (fix #69) 2014-05-11 13:29:42 +02:00
requirements.txt Get rid of sesql and upgrade to django 1.6 2014-05-02 00:13:33 +02:00
setup.py Rename project (prepare to 0.1) 2013-01-02 16:20:08 +01:00

uMap project
==============

About
-----
uMap lets you create maps with OpenStreetMap layers in a minute and embed them in your site.
*Because we think that the more OSM will be used, the more OSM will be ''cured''.*
It uses `django-leaflet-storage <https://github.com/yohanboniface/django-leaflet-storage>`_ and `Leaflet.Storage <https://github.com/yohanboniface/Leaflet.Storage>`_,  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 umap

Install dependencies and project::

    cd path/to/umap/repository
    git checkout 0.5.0
    git submodule init
    pip install -r requirements.pip
    pip install -e .

Create a default local settings file::

    cp umap/settings/local.py.sample umap/settings/local.py

Add database connexion informations in `local.py`, for example::

    DATABASES = {
        'default': {
            'ENGINE': 'django.contrib.gis.db.backends.postgis',
            'NAME': 'umap',
        }
    }

Add a `SECRET_KEY` in `local.py` with a long random secret key::

    SECRET_KEY = "a long and random secret key that must not be shared"

uMap uses `django-social-auth <http://django-social-auth.readthedocs.org/>`_ for user authentication. So you will need to configure it according to your
needs. For example::

    AUTHENTICATION_BACKENDS = (
        'social_auth.backends.contrib.github.GithubBackend',
        'social_auth.backends.contrib.bitbucket.BitbucketBackend',
        'social_auth.backends.twitter.TwitterBackend',
        'django.contrib.auth.backends.ModelBackend',
    )
    GITHUB_APP_ID = 'xxx'
    GITHUB_API_SECRET = 'zzz'
    BITBUCKET_CONSUMER_KEY = 'xxx'
    BITBUCKET_CONSUMER_SECRET = 'zzz'
    TWITTER_CONSUMER_KEY = "xxx"
    TWITTER_CONSUMER_SECRET = "yyy"

Example of callback URL to use for settings up OAuth apps::

 http://umap.foo.bar/complete/github/

Create the tables::

    python manage.py syncdb --migrate

Collect and compress the statics::

    python manage.py collectstatic
    python manage.py compress

Start the server::

    python manage.py runserver 0.0.0.0:8000

Go to the admin (http://localhost:8000/admin/) and add:

- almost one license
- almost one tilelayer

Translating
-----------

Everything is managed through Transifex: https://www.transifex.com/projects/p/umap/