-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (23 loc) · 896 Bytes
/
.env.example
File metadata and controls
31 lines (23 loc) · 896 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
# Authentication Providers
# GitHub OAuth credentials (create at https://github.com/settings/developers)
GITHUB_ID=
GITHUB_SECRET=
# Google OAuth credentials (create at https://console.cloud.google.com/apis/credentials)
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# Next Auth Configuration
# Generate a secure random string: `openssl rand -base64 32`
AUTH_SECRET=
# Base URL of your application (update for production)
NEXTAUTH_URL=http://localhost:3000
# Admin Email (comma separated list)
ADMIN_EMAILS=
# Google AI API key (get from https://makersuite.google.com/app/apikey)
GOOGLE_AI_API_KEY=
NEXT_PUBLIC_TRANSLATION_PROVIDER=google
GOOGLE_TRANSLATE_API_KEY=
# --- Rate Limiting ---
RATE_LIMIT_MAX_REQUESTS_PER_HOUR=100
RATE_LIMIT_WINDOW_MS=3600000 # 1 hour in milliseconds
# Google AI Model Name (Optional - defaults to a recent flash model)
GOOGLE_AI_GENERATION_MODEL="gemini-2.5-flash"