-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlaunch-web-interfaces.bat
More file actions
36 lines (31 loc) · 1021 Bytes
/
launch-web-interfaces.bat
File metadata and controls
36 lines (31 loc) · 1021 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
@echo off
echo ====================================
echo Provability-Fabric Web Interface Launcher
echo ====================================
echo.
echo Starting Documentation Site (Port 8002)...
start /B cmd /c "mkdocs serve --dev-addr=127.0.0.1:8002"
timeout /t 2 /nobreak >nul
echo Starting Console UI (Port 3000)...
start /B cmd /c "cd console && npm start"
timeout /t 3 /nobreak >nul
echo Starting Ledger Service (Port 4000)...
start /B cmd /c "cd runtime/ledger && npm run dev:minimal"
timeout /t 2 /nobreak >nul
echo.
echo ====================================
echo Web Interfaces Launch Complete!
echo ====================================
echo.
echo Access URLs:
echo - Documentation: http://127.0.0.1:8002
echo - Console UI: http://localhost:3000
echo - Ledger GraphQL: http://localhost:4000
echo.
echo Press any key to open Console UI...
pause >nul
start http://localhost:3000
echo.
echo Note: Services are running in background.
echo Use Ctrl+C in their respective windows to stop them.
pause