-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.local.example
More file actions
20 lines (15 loc) · 680 Bytes
/
Copy path.env.local.example
File metadata and controls
20 lines (15 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Better Auth Configuration
BETTER_AUTH_SECRET="generate-with-openssl-rand-base64-32"
BETTER_AUTH_URL="http://localhost:3000"
# Database Connection
DATABASE_URL="postgresql://user:password@localhost:5432/doable"
# Google OAuth Credentials
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
# Application URL
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# AI Chatbot (Get free API key from https://console.groq.com/)
GROQ_API_KEY="your-groq-api-key"
# Email Service (For team invitations via Resend)
RESEND_API_KEY="your-resend-api-key"
RESEND_FROM_EMAIL="noreply@yourdomain.com"