copilot-api / start.bat
imspsycho's picture
Initial upload from Google Colab
98c9143 verified
Raw
History Blame Contribute Delete
475 Bytes
@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 "" "http://localhost:4141/usage-viewer?endpoint=http://localhost:4141/usage"
bun run dev
pause