-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.bat
More file actions
31 lines (26 loc) · 972 Bytes
/
start.bat
File metadata and controls
31 lines (26 loc) · 972 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
@echo off
echo ============================================================
echo Vocably - Starting All Services
echo ============================================================
echo.
REM Start Ollama
echo Starting Ollama...
start "Vocably Ollama" cmd /k "ollama serve"
REM Start the backend in a new window
echo Starting TTS Backend...
start "Vocably Backend" cmd /k "cd /d %~dp0backend && run.bat"
REM Wait a moment for backend to begin initializing
timeout /t 3 /nobreak >nul
REM Start the frontend in a new window
echo Starting React Frontend...
start "Vocably Frontend" cmd /k "cd /d %~dp0 && npm run dev"
echo.
echo ============================================================
echo Both services are starting in separate windows.
echo
echo Backend: http://localhost:8000
echo Frontend: http://localhost:5173
echo
echo Close this window when done, or press any key to exit.
echo ============================================================
pause >nul