Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klml/kohrsupply
crowd logistics at a human scale
https://github.com/klml/kohrsupply
Last synced: 15 days ago
JSON representation
crowd logistics at a human scale
- Host: GitHub
- URL: https://github.com/klml/kohrsupply
- Owner: klml
- License: mit
- Created: 2017-06-07T18:04:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T09:42:37.000Z (3 months ago)
- Last Synced: 2024-10-31T18:08:03.072Z (2 months ago)
- Language: Python
- Size: 112 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kohrsupply
kohrsupply is a platform to accompany and manage relays of physical transportations. Its a very alpha prototype for [ptarp](//github.com/klml/ptarp).
You should send things from Alice to Bob, but transported from Carol, stocked by Erin, again transported by Frank to Peggy and finaly delivered by Wendy. Read more in [about](/about/index.md) (currently only in german)
kohrsupply is made with [django](https://www.djangoproject.com/)
Demo: [kohr.supply](http://kohr.supply/)
## install
[download](https://github.com/klml/kohrsupply/archive/master.zip) or checkout
```bash
pip3 install -r requirements.txt
mv settings.example.py settings.py
```[Prepare this](https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/) and change in 'settings.py':
* change the SECRET_KEY
* set DEBUG
* add your ALLOWED_HOSTS
* ad SITE_ID
* set STATIC_ROOT to the path for webassets (css, js) (STATIC_URL must stay '/static/')### test database
[CREATE SQLite Database](https://www.tutorialspoint.com/sqlite/sqlite_create_database.htm)
```bash
python3 manage.py migrate
```use example db
```bash
sqlite3 db.sqlite3 < kohrsupply/example/db.sql
```