12 lines
397 B
Batchfile
12 lines
397 B
Batchfile
@echo off
|
|
echo Starting AI Router Backend and Frontend...
|
|
|
|
REM Start Backend Server
|
|
start "AI Router Backend" cmd /k "cd /d %~dp0backend && go run main.go"
|
|
|
|
REM Start Frontend Server
|
|
start "AI Router Frontend" cmd /k "cd /d %~dp0frontend && npm run dev"
|
|
|
|
echo Both servers are starting in separate windows.
|
|
echo Backend: http://localhost:8080
|
|
echo Frontend: Check the frontend terminal for the URL |