23 lines
813 B
Plaintext
23 lines
813 B
Plaintext
# Gitea PR Reviewer — configuration
|
|
# Copy to .env and fill in values. Never commit .env to version control.
|
|
|
|
# Port to listen on (default: 9000)
|
|
PORT=9000
|
|
|
|
# Gitea instance base URL (no trailing slash)
|
|
GITEA_URL=https://git.ridgwaysystems.org
|
|
|
|
# Gitea personal access token
|
|
# Needs: read access to repository contents, write access to issues (for comments)
|
|
# Generate at: https://git.ridgwaysystems.org/user/settings/applications
|
|
GITEA_TOKEN=your-gitea-token-here
|
|
|
|
# DeepSeek API key
|
|
# Get one at: https://platform.deepseek.com
|
|
DEEPSEEK_API_KEY=your-deepseek-api-key-here
|
|
|
|
# Webhook secret — must match the secret set in Gitea's webhook config
|
|
# Generate with: openssl rand -hex 32
|
|
# Leave empty to skip signature verification (not recommended in production)
|
|
WEBHOOK_SECRET=change-me-use-openssl-rand-hex-32
|