12 lines
353 B
Bash
12 lines
353 B
Bash
#!/bin/ksh
|
|
# /usr/local/bin/gitea-pr-reviewer-run
|
|
# Copy to server, fill in values, chmod 500, chown _prbot.
|
|
|
|
export PORT=9000
|
|
export GITEA_URL=https://git.ridgwaysystems.org
|
|
export GITEA_TOKEN=your-gitea-token-here
|
|
export DEEPSEEK_API_KEY=your-deepseek-api-key-here
|
|
export WEBHOOK_SECRET=your-webhook-secret-here
|
|
|
|
exec /usr/local/bin/gitea-pr-reviewer
|