copilot-api / start.bat
imseldrith's picture
Initial upload from Colab
9e27976 verified
raw
history blame contribute delete
479 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 "" "https://ericc-ch.github.io/copilot-api?endpoint=http://localhost:4141/usage"
bun run dev
pause