-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSTART_SYSTEM.bat
More file actions
37 lines (33 loc) · 1004 Bytes
/
START_SYSTEM.bat
File metadata and controls
37 lines (33 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@echo off
echo ========================================
echo KeenAI-Quant Trading System
echo ========================================
echo.
echo This will start both backend and frontend
echo.
echo Backend: http://localhost:8000
echo Frontend: http://localhost:3000
echo.
echo Press any key to start...
pause > nul
REM Start backend in new window
start "KeenAI Backend" cmd /k "call venv\Scripts\activate.bat && python backend/main.py"
REM Wait 3 seconds for backend to start
timeout /t 3 /nobreak > nul
REM Start frontend in new window
start "KeenAI Frontend" cmd /k "cd frontend && npm run dev"
echo.
echo ========================================
echo System Started!
echo ========================================
echo.
echo Backend: http://localhost:8000
echo Frontend: http://localhost:3000
echo.
echo Two windows opened:
echo 1. Backend Server (Python/FastAPI)
echo 2. Frontend Server (Next.js)
echo.
echo Close those windows to stop the system
echo.
pause