16 lines
252 B
Bash
Executable File
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
|