-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
25 lines (20 loc) · 889 Bytes
/
.env.example
File metadata and controls
25 lines (20 loc) · 889 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
# Alchemy Infrastructure
ALCHEMY_PASSWORD=your-alchemy-password
ALCHEMY_STATE_TOKEN=your-state-token
# Better Auth
# Local dev can use a placeholder secret; production must use a random 32+ character secret.
BETTER_AUTH_SECRET=dev-secret-not-for-production
BETTER_AUTH_URL=http://localhost:5173
# Cloudflare (https://dash.cloudflare.com/profile/api-tokens)
CLOUDFLARE_EMAIL=your-email@example.com
CLOUDFLARE_ACCOUNT_ID=your-account-id
CLOUDFLARE_API_TOKEN=your-api-token
# Mailgun (optional in local dev, required for production email delivery)
MAILGUN_API_KEY=your-mailgun-key
MAILGUN_DOMAIN=mail.yourdomain.com
# LLM API Keys (BYOK - Bring Your Own Key)
# Users MUST add their own provider key in Settings → API Keys
# Get OpenRouter key: https://openrouter.ai/keys
OPENROUTER_API_KEY=sk-or-...
# Or use OpenAI directly: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-...