first commit

This commit is contained in:
Blake Ridgway
2026-04-11 13:58:06 -05:00
commit 04885022fd
10 changed files with 452 additions and 0 deletions

22
.env.example Normal file
View File

@@ -0,0 +1,22 @@
# 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