Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/perliedman/gypsum
Web app for logging your GPS tracks. Written in Django.
https://github.com/perliedman/gypsum
Last synced: about 1 month ago
JSON representation
Web app for logging your GPS tracks. Written in Django.
- Host: GitHub
- URL: https://github.com/perliedman/gypsum
- Owner: perliedman
- Created: 2012-08-06T20:38:31.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-03-01T11:39:20.000Z (over 7 years ago)
- Last Synced: 2024-04-14T22:14:23.443Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 278 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gypsum
Gypsum lets you upload tracks from your GPS (or something) using GPX format, stores them in a database and displays them on a map together with a bunch of statistics.
Multiple users are supported, you can get basic statistics for each user per month, etc.
Gypsum is written in Python with Django.
## Installation
Gypsum is a pretty basic Django app. If you know your way around Django, there shouldn't be any surprises.
In `settings.py`, I have made it possible to break out sensitive stuff like database configuration and passwords (to avoid uploading them to GitHub, like I did). Secrets are put in a file called `secrets.py` in Gypsum's directory. Example of contents for `secrets.py`:
databases = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'gypsum',
'USER': 'gypsum',
'PASSWORD': 'Tr0ub4dor&3',
'HOST': 'my.db.host'
}
}