-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_run-demo.bat
More file actions
19 lines (17 loc) · 770 Bytes
/
Copy path_run-demo.bat
File metadata and controls
19 lines (17 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@echo off
echo Starting SpawnDev.RTC Demo...
echo.
echo Tracker: http://localhost:5590 (WebTorrent-compatible signaling, /announce)
echo Blazor Demo: will open in browser automatically
echo.
echo Open multiple browser tabs at the same URL to test multi-peer chat.
echo Join the same room name in each tab.
echo.
start "RTC.ServerApp" dotnet run --project SpawnDev.RTC.ServerApp\SpawnDev.RTC.ServerApp.csproj
timeout /t 2 /nobreak >nul
start "BlazorDemo" dotnet run --project SpawnDev.RTC.Demo\SpawnDev.RTC.Demo.csproj --launch-profile https
echo.
echo Both servers starting. Open browser to the Blazor Demo URL.
echo Navigate to Chat Room, enter a room name, and grant camera/mic permission.
echo Open a second tab to the same URL and join the same room.
echo.