-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
41 lines (33 loc) · 1.12 KB
/
env.example
File metadata and controls
41 lines (33 loc) · 1.12 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
# Plain API Configuration
PLAIN_API_TOKEN=your_plain_api_token_here
PLAIN_SIGNATURE_SECRET=your_plain_webhook_signature_secret_here
PLAIN_WORKSPACE_ID=your_workspace_id_here
# Server Configuration
PORT=3000
NODE_ENV=development
HOST=localhost
# Webhook Configuration
WEBHOOK_ENDPOINT_PATH=/webhook/plain
# Priority Label Configuration (Plain Label Type IDs)
# You need to create these label types in Plain first, then get their IDs
LABEL_P0_ID=your_p0_label_type_id_here
LABEL_P1_ID=your_p1_label_type_id_here
LABEL_P2_ID=your_p2_label_type_id_here
LABEL_P3_ID=your_p3_label_type_id_here
# AI/ML Configuration (Optional - for future AI integration)
OPENAI_API_KEY=your_openai_api_key_here
AI_MODEL=gpt-4
AI_TEMPERATURE=0.1
# Logging Configuration
LOG_LEVEL=info
LOG_FORMAT=combined
# Security Configuration
RATE_LIMIT_WINDOW_MS=900000
RATE_LIMIT_MAX_REQUESTS=100
# Database Configuration - Supabase PostgreSQL
DATABASE_URL= YOUR SUPA BASE KEY
SUPABASE_URL=database url
SUPABASE_ANON_KEY=your_supabase_anon_key_here
# Monitoring Configuration (Optional)
SENTRY_DSN=your_sentry_dsn_here
NEW_RELIC_LICENSE_KEY=your_new_relic_license_key_here