-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (16 loc) · 744 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (16 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Database Configuration (Docker Compose)
DATABASE_URL="postgresql://resumind:resumind@db:5432/resumind"
DIRECT_DATABASE_URL="postgresql://resumind:resumind@db:5432/resumind"
# Better Auth Configuration
BETTER_AUTH_SECRET="<generate-random-32-char-string>"
BETTER_AUTH_URL="http://localhost:3000"
NEXT_PUBLIC_BETTER_AUTH_URL="http://localhost:3000"
# Google OAuth Credentials
GOOGLE_CLIENT_ID="<your-google-oauth-client-id>"
GOOGLE_CLIENT_SECRET="<your-google-oauth-client-secret>"
# Cerebras AI Configuration
CEREBRAS_API_KEY="<your-cerebras-api-key>"
# PDF Service Configuration (external service)
PDF_SERVICE_URL="http://localhost:8000"
# Rate Limiting (optional)
DISABLE_RATE_LIMITING="false" # Set to "true" in development if needed