-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.bat
More file actions
24 lines (21 loc) · 798 Bytes
/
start.bat
File metadata and controls
24 lines (21 loc) · 798 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
@echo off
echo ============================================
echo AI Writing Copilot - Startup Script
echo ============================================
REM Start Backend
echo.
echo [1/2] Starting Backend Server...
start "AI Writing Copilot - Backend" cmd /k "call .venv\Scripts\activate && cd backend && uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload"
REM Start Frontend
echo.
echo [2/2] Starting Frontend Server...
start "AI Writing Copilot - Frontend" cmd /k "cd frontend && npm run dev"
echo.
echo ============================================
echo Services are starting in new windows.
echo - Backend: http://localhost:8000
echo - Frontend: http://localhost:3000
echo ============================================
echo.
echo Press any key to close this launcher...
pause >nul