Spaces:
Running
Running
File size: 196 Bytes
780d695 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/sh
PORT=${PORT:-7860}
if [ "$1" = "--auth" ]; then
exec bun run dist/main.js auth
else
exec bun run dist/main.js start \
-g "$GH_TOKEN" \
--port $PORT \
--host 0.0.0.0
fi
|