-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
42 lines (33 loc) · 1.31 KB
/
Copy path.env.local.example
File metadata and controls
42 lines (33 loc) · 1.31 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
38
39
40
41
42
# Docker Local Development Environment
# Copy this to .env.local to run with Docker
# Server Configuration
PORT=3000
NODE_ENV=development
# Database (PostgreSQL - Docker Service)
# Uses the service name 'postgres' defined in docker-compose.yml
DATABASE_URL=postgresql://flowforge:dev_password@postgres:5432/flowforge_dev
# Redis (Redis - Docker Service)
# Uses the service name 'redis' defined in docker-compose.yml
REDIS_URL=redis://redis:6379
# Gmail OAuth (Requires real credentials)
GMAIL_CLIENT_ID=your_gmail_client_id
GMAIL_CLIENT_SECRET=your_gmail_client_secret
GMAIL_REDIRECT_URI=http://localhost:3000/api/auth/gmail/callback
# Google Calendar OAuth (Requires real credentials)
GOOGLE_CALENDAR_REDIRECT_URI=http://localhost:3000/api/auth/google-calendar/callback
# Notion OAuth (Requires real credentials)
NOTION_CLIENT_ID=your_notion_client_id
NOTION_CLIENT_SECRET=your_notion_client_secret
NOTION_REDIRECT_URI=http://localhost:3000/api/auth/notion/callback
# Encryption (64 hex characters)
ENCRYPTION_KEY=your_64_char_hex_encryption_key
# JWT Configuration
JWT_SECRET=your_jwt_secret
JWT_REFRESH_SECRET=your_jwt_refresh_secret
JWT_EXPIRY=15m
JWT_REFRESH_EXPIRY=7d
# Email Service (Resend)
RESEND_API_KEY=re_your_resend_api_key
RESEND_FROM_EMAIL=onboarding@resend.dev
APP_NAME=FlowForge
APP_BASE_URL=http://localhost:3000