-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (24 loc) · 855 Bytes
/
.env.example
File metadata and controls
32 lines (24 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
DATABASE_URL=postgresql://quickgithub:quickgithub_dev@localhost:5433/quickgithub
REDIS_URL=redis://localhost:6379
AUTH_SECRET=
AUTH_GITHUB_ID=
AUTH_GITHUB_SECRET=
AUTH_URL=http://localhost:3000
ANTHROPIC_API_KEY=
OPENAI_API_KEY=
# LLM provider: "anthropic" (default) or "openai"
LLM_PROVIDER=anthropic
# Max LLM requests per minute (worker-side rate limiter). Default: 40.
# LLM_RATE_LIMIT_RPM=40
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
# Resend email notifications (optional — no emails sent if empty)
RESEND_API_KEY=
NOTIFICATION_FROM_EMAIL=QuickGitHub <noreply@quickgithub.com>
APP_BASE_URL=http://localhost:3000
# Admin user ID (bypasses free-tier repo limit). Leave empty for no admin.
ADMIN_USER_ID=
WORKER_API_URL=http://localhost:8080
WORKER_API_PORT=8080
WORKER_CONCURRENCY=5
MAX_FILES_PER_REPO=500
MAX_FILE_SIZE_BYTES=102400