Files
PiDoBot/start.sh
2026-03-04 15:04:10 +00:00

4 lines
188 B
Bash

python3 -m venv venv
source venv/bin/activate
echo "--- Starte den Master-Server auf Port 8000..."
python3 -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload --reload-exclude "venv/*"