-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.env.example
28 lines (23 loc) · 929 Bytes
/
.env.example
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
# Database Configuration
DATABASE_URL="postgresql://fluid:fluid@localhost:5432/fluid_calendar"
# Google OAuth Configuration
# Create these at https://console.cloud.google.com
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""
# NextAuth Configuration
# Use domain in production, localhost for development
NEXTAUTH_URL="http://localhost:3000"
# Same as NEXTAUTH_URL, used for server-side API calls
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# Generate a secret with: openssl rand -base64 32
NEXTAUTH_SECRET="your-secret-key-min-32-chars"
# Microsoft Graph API (Optional - for Outlook Calendar)
# Create these at https://portal.azure.com
AZURE_AD_CLIENT_ID="your-azure-client-id"
AZURE_AD_CLIENT_SECRET="your-azure-client-secret"
AZURE_AD_TENANT_ID="your-azure-tenant-id"
# Logging Configuration
# Options: debug, none (look at logger.ts for more details)
LOG_LEVEL="none"
# SAAS Configuration
NEXT_PUBLIC_ENABLE_SAAS_FEATURES=false