-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.example
More file actions
24 lines (19 loc) · 724 Bytes
/
env.example
File metadata and controls
24 lines (19 loc) · 724 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
# Convex
NEXT_PUBLIC_CONVEX_URL=your_convex_deployment_url
NEXT_PUBLIC_CONVEX_SITE_URL=your_convex_site_url
SITE_URL=http://localhost:3000
# AI fallback provider
# Get your API key from: https://openrouter.ai/keys
OPENROUTER_API_KEY=sk-or-v1-your-openrouter-key
# Encryption secret for BYOK API key encryption
# Generate with: openssl rand -base64 32
API_KEY_ENCRYPTION_SECRET=your-generated-32-byte-secret
# Better Auth OAuth providers (optional)
GITHUB_CLIENT_ID=your_github_client_id
GITHUB_CLIENT_SECRET=your_github_client_secret
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
# NODE ENV
NODE_ENV=development
# Public site URL / SEO
NEXT_PUBLIC_SITE_URL=http://localhost:3000