forked from humanxtech/SmartArchitect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart-dev.bat
More file actions
26 lines (22 loc) · 738 Bytes
/
Copy pathstart-dev.bat
File metadata and controls
26 lines (22 loc) · 738 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
@echo off
echo Starting SmartArchitect AI Development Environment...
echo.
:: 启动后端
echo [1/2] Starting Backend...
start "SmartArchitect Backend" cmd /k "cd backend && venv\Scripts\activate && python -m app.main"
:: 等待 2 秒
timeout /t 2 /nobreak >nul
:: 启动前端
echo [2/2] Starting Frontend...
start "SmartArchitect Frontend" cmd /k "cd frontend && npm run dev"
echo.
echo ========================================
echo SmartArchitect AI is starting!
echo ========================================
echo Frontend: http://localhost:3000
echo Backend: http://localhost:8003
echo API Docs: http://localhost:8003/docs
echo ========================================
echo.
echo Press any key to exit this window...
pause >nul