-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy path.env.example
More file actions
42 lines (33 loc) · 1.25 KB
/
.env.example
File metadata and controls
42 lines (33 loc) · 1.25 KB
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
33
34
35
36
37
38
39
40
41
42
# App URL
NEXT_PUBLIC_APP_URL="https://repomind.in"
# GitHub Token
GITHUB_TOKEN="your_github_token"
# Gemini API Key
GEMINI_API_KEY="your_gemini_api_key"
GEMINI_FILE_SELECTOR_MODEL="gemini-3.1-flash-lite-preview"
GEMINI_LITE_MODEL="gemini-3.1-flash-lite-preview"
GEMINI_THINKING_MODEL="gemini-3-flash-preview"
# Caching Vercel KV
KV_REST_API_READ_ONLY_TOKEN="your_kv_rest_api_read_only_token"
KV_REST_API_TOKEN="your_kv_rest_api_token"
KV_REST_API_URL="your_kv_rest_api_url"
KV_URL="your_kv_url"
REDIS_URL="your_redis_url"
BLOB_READ_WRITE_TOKEN="your_blob_read_write_token"
# Admin access
ADMIN_GITHUB_USERNAME="your_admin_github_username"
# NextAuth
AUTH_GITHUB_ID="your_github_client_id"
AUTH_GITHUB_SECRET="your_github_client_secret"
AUTH_SECRET="any_random_32char_string"
# Postgres (Neon)
DATABASE_URL="your_neon_pooled_connection_url"
DIRECT_URL="your_neon_direct_connection_url" # Required for migrations/deploy (non-pooler host)
# Resend
RESEND_API_KEY="your_resend_api_key"
RESEND_FROM_EMAIL="RepoMind <onboarding@yourdomain.com>"
RESEND_WEBHOOK_SECRET="your_resend_webhook_secret"
# Internal retry job auth
EMAIL_RETRY_JOB_SECRET="your_internal_retry_secret"
# Optional: Vercel Cron auth (Authorization: Bearer <CRON_SECRET>)
CRON_SECRET="your_vercel_cron_secret"