Spaces:
No application file
No application file
File size: 516 Bytes
80dbe44 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
@echo off
REM Start script cho Windows
REM Chạy cả backend và frontend
echo 🚀 Starting Transportation AI Platform...
REM Start backend FastAPI server in background
echo 📡 Starting Backend API Server...
start /B uvicorn src.main:app --host 0.0.0.0 --port 3454
REM Wait for backend to start
timeout /t 5 /nobreak > nul
REM Check if backend is running (simplified)
echo ✅ Backend API should be running on port 3454
REM Start frontend Gradio app
echo 🎨 Starting Frontend Gradio App...
python app.py
|