a cache for slack profile pictures and emojis
at main 721 B view raw
1# Slack API Configuration 2# Get these from https://api.slack.com/apps 3SLACK_TOKEN=xoxb-123456789012-123456789012-abcdefghijklmnopqrstuvwx 4SLACK_SIGNING_SECRET=1234567890abcdef1234567890abcdef 5 6# Environment 7NODE_ENV=production 8 9# Optional: Sentry Error Monitoring 10# Get your DSN from https://sentry.io 11# SENTRY_DSN=https://xxxxx@xxxx.ingest.us.sentry.io/123456 12 13# Optional: Database Configuration 14# Defaults to ./data/cachet.db if not set 15# DATABASE_PATH=/path/to/cachet.db 16 17# Optional: Server Port 18# Defaults to 3000 if not set 19# PORT=3000 20 21# Admin Authentication 22# Used for protected endpoints like /reset and /users/:id/purge 23# Generate a secure random string for production 24BEARER_TOKEN=your-secure-random-token-here