-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 1.19 KB
/
.env.example
File metadata and controls
31 lines (25 loc) · 1.19 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
# Application
NODE_ENV="development"
# Database
# Option 1: Use DATABASE_URL (recommended - single connection string)
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/all_in_one_calendar?schema=public"
# Option 2: Use individual PostgreSQL variables (alternative to DATABASE_URL)
# These are used if DATABASE_URL is not set, or can override specific components
# PG_HOST="localhost"
# PG_PORT="5432"
# PG_USER="postgres"
# PG_PASSWORD="postgres"
# PG_DATABASE="all_in_one_calendar"
# Application URL (change for production)
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# NextAuth Secret (generate with: openssl rand -base64 32)
NEXTAUTH_SECRET="your-secret-key-here-change-in-production"
NEXTAUTH_URL="http://localhost:3000"
# Composio API (get from https://app.composio.dev/settings)
# Sign up at https://composio.dev
COMPOSIO_API_KEY=""
COMPOSIO_GOOGLE_AUTH_CONFIG_ID="" # Create at https://platform.composio.dev?next_page=/marketplace/Google%20Calendar
COMPOSIO_MICROSOFT_TEAMS_AUTH_CONFIG_ID="" # Create at https://platform.composio.dev?next_page=/marketplace/Microsoft%20Teams
# Docker-specific variables (for docker-compose.yml)
DB_PASSWORD="change_me_in_production"
APP_URL="http://localhost:3000"