feat: TurboSu initial release - racing telemetry dashboard

This commit is contained in:
Yei.J. (AskaEth)
2026-07-25 15:23:40 +08:00
commit d61bb61a83
61 changed files with 5270 additions and 0 deletions
Executable
+18
View File
@@ -0,0 +1,18 @@
#!/bin/bash
set -e
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$SCRIPT_DIR"
if [ ! -d "venv" ]; then
echo "[TurboSu] Creating virtual environment..."
python3 -m venv venv
fi
source venv/bin/activate
echo "[TurboSu] Installing dependencies..."
pip install -q -r requirements.txt
echo "[TurboSu] Starting server..."
python app.py