Spaces:
Running
Running
File size: 479 Bytes
9e27976 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
@echo off
echo ================================================
echo GitHub Copilot API Server with Usage Viewer
echo ================================================
echo.
if not exist node_modules (
echo Installing dependencies...
bun install
echo.
)
echo Starting server...
echo The usage viewer page will open automatically after the server starts
echo.
start "" "https://ericc-ch.github.io/copilot-api?endpoint=http://localhost:4141/usage"
bun run dev
pause
|