vitallink-BS/vitallink/docker-start.sh
2025-11-24 17:08:42 -05:00

16 lines
252 B
Bash
Executable File

#!/bin/bash
# Backend
python backend/server.py &
# Wristband system
python simulator/main_runner.py &
# Dashboard
cd frontend/dashboard && python -m http.server 5173 -d dist &
# Kiosk
cd frontend/kiosk && python -m http.server 5174 -d dist &
wait