-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.bat
More file actions
38 lines (33 loc) · 842 Bytes
/
Copy pathdeploy.bat
File metadata and controls
38 lines (33 loc) · 842 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
32
33
34
35
36
37
38
@echo off
echo Starting StudioHub Dashboard deployment...
echo.
echo Checking if Docker is running...
docker --version >nul 2>&1
if errorlevel 1 (
echo ERROR: Docker is not installed or not running
echo Please install Docker Desktop and make sure it's running
pause
exit /b 1
)
echo Docker found! Starting deployment...
echo.
docker-compose -f docker-compose.easy.yml up -d
if errorlevel 1 (
echo.
echo ERROR: Deployment failed!
echo Check the error messages above
pause
exit /b 1
)
echo.
echo ========================================
echo StudioHub Dashboard deployed successfully!
echo ========================================
echo.
echo Dashboard URL: http://localhost:3000
echo MCP Server: http://localhost:3001
echo.
echo To stop: run "stop.bat"
echo To view logs: run "logs.bat"
echo.
pause