mirror of
https://github.com/ReCloudStudio/WebHooker.git
synced 2026-09-22 16:11:29 +00:00
- configuration.md (en/zh): ALLOW_SELF_SIGNUP, AUDIT_RETENTION_DAYS, member schema, role table, invite/self-signup sections, invite KV key, audit_logs D1 table, new admin endpoints - deployment.md (en/zh): migration list through 0005 - README (en/zh) and AGENTS.md: access model, invites, audit log - config.example.yaml: members example; .env.example: new variables - .gitignore: ignore local saas-roadmap.md
32 lines
1 KiB
Text
32 lines
1 KiB
Text
# GitHub
|
|
GITHUB_WEBHOOK_SECRET=your-webhook-secret
|
|
GITHUB_APP_ID=your-app-id
|
|
GITHUB_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----"
|
|
GITHUB_CLIENT_ID=your-client-id
|
|
GITHUB_CLIENT_SECRET=your-client-secret
|
|
|
|
# Gitea (optional — to receive Gitea webhooks)
|
|
GITEA_WEBHOOK_SECRET=your-gitea-webhook-secret
|
|
|
|
# Discord
|
|
DISCORD_TOKEN=your-bot-token
|
|
DISCORD_PUBLIC_KEY=your-public-key
|
|
DISCORD_APPLICATION_ID=your-application-id
|
|
|
|
# Telegram
|
|
TELEGRAM_TOKEN=your-bot-token
|
|
TELEGRAM_WEBHOOK_SECRET=your-webhook-secret
|
|
# TELEGRAM_RICH_HEADER_HOST=https://your-domain
|
|
|
|
# Admin
|
|
ADMIN_USER_IDS=your-github-id,your-github-login
|
|
# ALLOW_SELF_SIGNUP=1 # non-admin GitHub users get a personal group on first login (default off)
|
|
# AUDIT_RETENTION_DAYS=90 # audit log retention for the scheduled cleanup (default 90)
|
|
|
|
# Server / public URL (OAuth callbacks + Telegram webhook sync)
|
|
BASE_URL=http://localhost:8787
|
|
|
|
# Optional
|
|
# DOCS_URL=https://your-docs-site
|
|
# GITHUB_REPO_URL=https://github.com/ReCloudStudio/WebHooker
|
|
# LEGAL_CONTACT=contact@example.com
|