-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
71 lines (57 loc) · 1.71 KB
/
.env.example
File metadata and controls
71 lines (57 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Environment Configuration Template
# Copy this file to .env and fill in your actual values
# Application Environment
NODE_ENV=production
NUXT_APP_BASE_URL=https://your-calendar-app.com
# API Configuration
NUXT_PUBLIC_API_BASE=/api
API_TIMEOUT=30000
API_RETRY_ATTEMPTS=3
# Database Configuration
DATABASE_URL=postgresql://user:password@localhost:5432/calendar_db
REDIS_URL=redis://localhost:6379
# Security
SECRET_KEY=your-super-secret-key-change-this
JWT_SECRET=your-jwt-secret-key
ENCRYPTION_KEY=your-encryption-key-32-chars
# Authentication (if using external providers)
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
MICROSOFT_CLIENT_ID=your-microsoft-client-id
MICROSOFT_CLIENT_SECRET=your-microsoft-client-secret
# Analytics and Monitoring
NUXT_PUBLIC_ENABLE_ANALYTICS=true
NUXT_UMAMI_SITE_ID=
NUXT_RYBBIT_SITE_ID=
GOOGLE_ANALYTICS_ID=G-XXXXXXXXXX
SENTRY_DSN=https://your-sentry-dsn@sentry.io/project
# Performance Monitoring
NEW_RELIC_LICENSE_KEY=your-new-relic-key
DATADOG_API_KEY=your-datadog-key
# Email Service (for notifications)
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your-email@gmail.com
SMTP_PASS=your-app-password
# File Storage
AWS_ACCESS_KEY_ID=your-aws-access-key
AWS_SECRET_ACCESS_KEY=your-aws-secret-key
AWS_REGION=us-east-1
AWS_S3_BUCKET=your-calendar-uploads
# Rate Limiting
RATE_LIMIT_MAX_REQUESTS=1000
RATE_LIMIT_WINDOW_MS=900000
# Cache Configuration
CACHE_TTL=3600
CACHE_MAX_SIZE=1000
# Feature Flags
FEATURE_RECURRING_EVENTS=true
FEATURE_EXTERNAL_CALENDARS=true
FEATURE_COLLABORATION=false
FEATURE_ADVANCED_NOTIFICATIONS=true
# Development Only
NUXT_DEVTOOLS=true
NUXT_DEBUG=false
# Deployment
DEPLOY_TARGET=static
DEPLOY_URL=https://your-calendar-app.com