-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (37 loc) · 1.52 KB
/
Copy path.env.example
File metadata and controls
45 lines (37 loc) · 1.52 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
# =======================================================
# Slack RAG Bot - Environment Configuration
# =======================================================
# -------------------------------------------------------
# Slack Configuration (Required)
# -------------------------------------------------------
SLACK_BOT_TOKEN=xoxb-your-bot-token
SLACK_SIGNING_SECRET=your-signing-secret
# -------------------------------------------------------
# Database Configuration
# -------------------------------------------------------
# Set to "true" for AWS Lambda (Aurora Data API)
# Set to "false" for local development (PostgreSQL via psycopg2)
USE_DATA_API=false
# Local PostgreSQL (when USE_DATA_API=false)
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=postgres
DATABASE_NAME=slack_rag
# AWS Aurora Data API (when USE_DATA_API=true)
# These are set automatically by CDK in Lambda environment
# CLUSTER_ARN=arn:aws:rds:region:account:cluster:name
# SECRET_ARN=arn:aws:secretsmanager:region:account:secret:name
# -------------------------------------------------------
# AWS Configuration
# -------------------------------------------------------
AWS_REGION=us-east-1
# -------------------------------------------------------
# Indexing Configuration
# -------------------------------------------------------
# Batch indexing channel filter (comma-separated channel IDs, empty = all)
ALLOWED_CHANNELS=
# -------------------------------------------------------
# Logging
# -------------------------------------------------------
LOG_LEVEL=INFO