-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
50 lines (40 loc) · 1.45 KB
/
.env.example
File metadata and controls
50 lines (40 loc) · 1.45 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
# ===========================================
# PROJECT VALKYRIE - ENVIRONMENT CONFIGURATION
# ===========================================
# NOTION CONFIGURATION
# Get your integration token from: https://www.notion.so/my-integrations
NOTION_TOKEN=secret_your_integration_token_here
# Database IDs from Notion URLs
# Example: https://www.notion.so/your-workspace/DATABASE_ID?v=xxx
DASHBOARD_DB_ID=your_operations_dashboard_database_id
LOGISTICS_DB_ID=your_logistics_database_id
# EXTERNAL DATA PROVIDERS (OPTIONAL - FOR REAL API INTEGRATION)
# Get OpenWeather API key: https://openweathermap.org/api
OPENWEATHER_API_KEY=your_openweather_key_here
# Get News API key: https://newsapi.org
NEWS_API_KEY=your_newsapi_key_here
# MCP SERVER SETTINGS
PORT=3000
LOG_LEVEL=info
# MOCK API URL (for development)
MOCK_API_URL=http://localhost:8000
# Webhook server (for Slack action links and interactive payloads)
WEBHOOK_PORT=4000
# Secure token for webhook actions (set a strong random value)
WEBHOOK_ACTION_TOKEN=your_secure_random_token_here
# Slack integration (optional)
SLACK_WEBHOOK_URL=
SLACK_SIGNING_SECRET=
# Email (SMTP) for alerts (optional)
# SMTP host and port
EMAIL_SMTP_HOST=
EMAIL_SMTP_PORT=
# SMTP credentials
EMAIL_SMTP_USER=
EMAIL_SMTP_PASS=
ALERT_RECIPIENT=
# Scheduler / Watcher configuration
# How often the scheduler runs scans (minutes)
SCAN_INTERVAL_MINUTES=5
# How often the watcher polls Notion for status changes (seconds)
WATCHER_INTERVAL_SECONDS=30