-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.bat
More file actions
18 lines (15 loc) · 746 Bytes
/
Copy pathrun.bat
File metadata and controls
18 lines (15 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@echo off
echo ===================================================
echo Starting Autonomous Code Architect Fullstack...
echo ===================================================
echo [1/2] Launching Python FastAPI Backend on port 8000...
start "RepoGuardian Backend" cmd /k "cd backend && uvicorn main:app --reload --port 8000"
echo [2/2] Launching Next.js Frontend on port 3000...
start "RepoGuardian Frontend" cmd /k "cd frontend && npm run dev"
echo ===================================================
echo Both servers started!
echo - Backend: http://localhost:8000
echo - Frontend: http://localhost:3000
echo - Close the opened command prompt windows to stop them.
echo ===================================================
pause