@mytec: iter3.2.5 gpu polish start

This commit is contained in:
2026-02-03 12:33:52 +02:00
parent 20d19d09ae
commit a61753c642
10 changed files with 1125 additions and 2 deletions

24
rfcp.sh Normal file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
# RFCP - RF Coverage Planner - Launcher
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$SCRIPT_DIR"
# Check if backend exists
if [ ! -f "backend/app/main.py" ]; then
echo "ERROR: RFCP backend not found."
echo "Run: python install_rfcp.py"
exit 1
fi
echo "============================================"
echo " RFCP - RF Coverage Planner"
echo "============================================"
echo ""
echo "Starting backend server..."
echo "Open http://localhost:8090 in your browser"
echo "Press Ctrl+C to stop"
echo ""
cd backend
python3 -m uvicorn app.main:app --host 0.0.0.0 --port 8090