-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) · 1.27 KB
/
.env.example
File metadata and controls
37 lines (28 loc) · 1.27 KB
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
32
33
34
35
36
37
# Database
DATABASE_URL="postgresql://username:password@localhost:5432/cedular"
# App Configuration
NODE_ENV="development"
NEXT_PUBLIC_APP_URL="http://localhost:3000"
BETTER_AUTH_URL="http://localhost:3000"
# OpenAI (Optional)
OPENAI_API_KEY="sk-your-openai-api-key"
# Google OAuth Configuration
# Get these from Google Cloud Console: https://console.cloud.google.com/
GOOGLE_CLIENT_ID="your-google-client-id.apps.googleusercontent.com"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
# Google OAuth Redirect URIs
# Add both to Google Cloud Console Authorized redirect URIs
BETTER_AUTH_GOOGLE_REDIRECT_URI="http://localhost:3000/api/auth/callback/google"
GOOGLE_SERVICES_REDIRECT_URI="http://localhost:3000/api/auth/google/callback"
# Google Cloud Project (Optional - for Gmail push notifications)
GOOGLE_CLOUD_PROJECT_ID="your-project-id"
# Gmail Pub/Sub (Optional - for Gmail push notifications)
GMAIL_PUBSUB_TOPIC="projects/your-project-id/topics/gmail-notifications"
# Cron Jobs (Optional)
CRON_SECRET="your-cron-secret"
# Langfuse (Optional - for AI observability)
LANGFUSE_SECRET_KEY="your-langfuse-secret-key"
LANGFUSE_PUBLIC_KEY="your-langfuse-public-key"
LANGFUSE_BASEURL="https://cloud.langfuse.com"
RESEND_API_KEY="your-resend-api-key"
RESEND_FROM_EMAIL="noreply@yourdomain.com"