https://github.com/bendog/elitetransport
Elite Transport site
https://github.com/bendog/elitetransport
Last synced: 10 months ago
JSON representation
Elite Transport site
- Host: GitHub
- URL: https://github.com/bendog/elitetransport
- Owner: bendog
- License: gpl-3.0
- Created: 2017-06-21T13:39:08.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-06-10T19:25:45.000Z (about 5 years ago)
- Last Synced: 2025-04-02T12:49:27.860Z (about 1 year ago)
- Language: Python
- Size: 570 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Elite Transport
This is a simple tracking system built for my brother's business.
Absolutely no support will be given to this project, however if somehow this inspires you, then that's great!
You will need to create a file `elitetransport/config.py` with the following contents
```python
"""
Store for config data for the website
"""
SECRET_KEY = 'my-very-long-secret-key'
DEBUG = False
ALLOWED_HOSTS = ['.mydomain.com']
DB_DEFAULT_HOST = 'my db host'
DB_DEFAULT_NAME = 'my db name'
DB_DEFAULT_USER = 'my db user'
DB_DEFAULT_PASS = 'my pass'
```