Sync misc changes

This commit is contained in:
Innovation 2025-02-08 06:15:02 +00:00
parent a8fbb578e8
commit f2ac8871e5
3 changed files with 12 additions and 3 deletions

2
.gitignore vendored
View file

@ -2,3 +2,5 @@ src/**/__pycache__
src/venv
src/modules/navigationd/*.png
src/modules/navigationd/cache
src/logs
src/cache

View file

@ -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.

View file

@ -1,3 +1,3 @@
#!/bin/bash
export FLASK_APP=nightserver.py
flask run
flask run --host=0.0.0.0