Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kartoza/flask_user_map
A simple flask for creating user community maps
https://github.com/kartoza/flask_user_map
Last synced: 5 days ago
JSON representation
A simple flask for creating user community maps
- Host: GitHub
- URL: https://github.com/kartoza/flask_user_map
- Owner: kartoza
- License: gpl-2.0
- Created: 2013-10-14T10:18:36.000Z (about 11 years ago)
- Default Branch: develop
- Last Pushed: 2014-04-14T21:11:00.000Z (over 10 years ago)
- Last Synced: 2024-08-01T12:35:56.938Z (3 months ago)
- Language: JavaScript
- Size: 1.71 MB
- Stars: 5
- Watchers: 26
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - kartoza/flask_user_map - A simple flask for creating user community maps (others)
README
[![Stories in Ready](https://badge.waffle.io/timlinux/user_map.png?label=ready)](https://waffle.io/timlinux/user_map)
[![Build Status](http://jenkins.linfiniti.com/buildStatus/icon?job=UserMap)](http://jenkins.linfiniti.com/job/UserMap/)User Map
========A simple flask application for creating user community maps.
First create a valid ``config.py`` e.g.
```
cp users/config.py.prod users/config.py
```Then edit the config file, setting appropriate values as needed.
To run in debug mode (which will also serve up static content), use the -d
flag.``python runserver.py -d``
If running under pycharm, remember to edit the run configuration and add the
``-d`` to the parameters.Deployment using Docker
=======================If you are using docker, you can create a Docker image for this app easily as
follows:```
wget -O Dockerfile https://raw.github.com/timlinux/user_map/master/docker/Dockerfile
wget -O sources.list https://raw.github.com/timlinux/user_map/master/docker/sources.list
wget -O post-setup.sh https://raw.github.com/timlinux/user_map/master/docker/post-setup.sh
chmod +x post-setup.shdocker build -t linfiniti/user_map:base .
docker run -d -p 8099:80 -t linfiniti/user_map:base -n user_map -D
```If you are on a Hetzner server, consider replacing the second line above with:
```
wget -O sources.list https://raw.github.com/timlinux/user_map/master/docker/hetzner-sources.list
```Authors
=======Tim Sutton and Akbar Gumbira