-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (27 loc) · 904 Bytes
/
Copy path.env.example
File metadata and controls
34 lines (27 loc) · 904 Bytes
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
# Database Configuration
DATABASE_URL=postgresql://user:password@localhost:5432/morning_command_center_dev
# Jira Cloud Integration
JIRA_CLIENT_ID=your-jira-client-id-here
JIRA_CLIENT_SECRET=your-jira-client-secret-here
JIRA_INSTANCE_URL=https://company.atlassian.net
# Microsoft 365 / Outlook Integration
OUTLOOK_CLIENT_ID=your-outlook-client-id-here
OUTLOOK_CLIENT_SECRET=your-outlook-client-secret-here
OUTLOOK_TENANT_ID=your-azure-tenant-id-here
OUTLOOK_REDIRECT_URI=http://localhost:3000/api/auth/callback/outlook
# Session & Security
SESSION_SECRET=your-random-session-secret-at-least-32-characters-long
# Application Settings
NODE_ENV=development
LOG_LEVEL=debug
PORT=3000
# Optional: Analytics
ANALYTICS_ENABLED=false
SENTRY_DSN=
# Optional: Email Service (for notifications)
SMTP_HOST=
SMTP_PORT=
SMTP_USER=
SMTP_PASSWORD=
# Optional: Redis (for caching)
REDIS_URL=redis://localhost:6379