A lightweight Flask-based web server to collect, display, and manage telemetry data from the Virginia Tech Autoboat project.
autoboat_telemetry_server/
├── init.py # App factory
├── _autopilot_parameters.py # Blueprint: autopilot params
├── _boat_status.py # Blueprint: boat status
├── _waypoints.py # Blueprint: waypoints
pip install -e .
- Production (Gunicorn):
gunicorn "autoboat_telemetry_server:create_app()"
- Development (Flask):
flask run