-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (21 loc) · 1001 Bytes
/
.env.example
File metadata and controls
26 lines (21 loc) · 1001 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
# Slack App Credentials
# Get these from https://api.slack.com/apps/YOUR_APP_ID/general
SLACK_BOT_TOKEN=xoxb-your-bot-token
SLACK_SIGNING_SECRET=your-signing-secret
SLACK_APP_TOKEN=xapp-your-app-token
# Database
# PostgreSQL connection string
DATABASE_URL=postgresql://user:password@localhost:5432/case_production
# Required Configuration
# The channel ID where new investigations are announced
# To find a channel ID: Right-click channel name → View channel details → ID at bottom
ISSUES_CHANNEL_ID=C123456789
# Optional Configuration
# Comma-separated list of workspace IDs to allow (leave empty to allow all)
# ALLOWED_WORKSPACE_IDS=T123456,T789012
# Slack user group ID for incident response team (e.g., S123456789)
# To find a user group ID: Navigate to People → User groups → Select group → ID in URL
# When an investigation is escalated to incident, all members of this group will be added to the channel
# INCIDENT_RESPONSE_GROUP_ID=S123456789
# Environment
NODE_ENV=production