-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 757 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (21 loc) · 757 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
27
# Environment
DEPLOY_ENV=dev
PYTHONUNBUFFERED=1
# OpenTelemetry
OTEL_EXPORTER_OTLP_ENDPOINT=http://otel-collector:4318
OTEL_SERVICE_NAME=hookcli-mcp
OTEL_TRACES_SAMPLER=always_on
# Storage
REDIS_URL=redis://redis:6379/0
DATABASE_URL=sqlite:///./hooks.db
# Integrations
SLACK_SIGNING_SECRET=your-slack-signing-secret
SLACK_BOT_TOKEN=xoxb-your-bot-token
STRIPE_WEBHOOK_SECRET=whsec_your_stripe_secret
# Stripe webhook receiver — register endpoint in Stripe Dashboard → Webhooks
STRIPE_WEBHOOK_SECRET=whsec_your_stripe_webhook_signing_secret
# RAG pipeline — set to enable AI-powered bottleneck analysis
# Without this, bottleneck_analyze returns a heuristic summary from SQLite metrics
ANTHROPIC_API_KEY=
# Runtime
ALLOWED_HOSTS=localhost,0.0.0.0