Sync misc changes
This commit is contained in:
parent
a8fbb578e8
commit
f2ac8871e5
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,3 +2,5 @@ src/**/__pycache__
|
|||
src/venv
|
||||
src/modules/navigationd/*.png
|
||||
src/modules/navigationd/cache
|
||||
src/logs
|
||||
src/cache
|
||||
|
|
11
README.md
11
README.md
|
@ -3,8 +3,15 @@
|
|||
Software for the K.A.T.I.E.
|
||||
|
||||
## Components
|
||||
### Nightserver
|
||||
nightserver.py - The central API that the frontend recieves data from. Also serves the frontend itself.
|
||||
|
||||
modules/vitalsd/ - Vitals Daemon. Obtains vitals information and POSTs to nightserver.
|
||||
### Vitalsd
|
||||
- modules/vitalsd/ - Vitals Daemon. Obtains vitals information and POSTs to nightserver.
|
||||
- modules/vitalsd/
|
||||
|
||||
modules/navigationd/ - Navigation Daemon. Obtains navigation data and POSTs to nightserver.
|
||||
### Navigationd
|
||||
modules/navigationd/ - Navigation Daemon. Obtains navigation data from gpsd and POSTs to nightserver.
|
||||
|
||||
### Musicd
|
||||
modules/musicd/ - Music Daemon. Simply speaking, plays music.
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/bash
|
||||
export FLASK_APP=nightserver.py
|
||||
flask run
|
||||
flask run --host=0.0.0.0
|
||||
|
|
Loading…
Reference in a new issue