a cache for slack profile pictures and emojis

feat: add example .env

dunkirk.sh d8035dc6 e135656f

verified
Changed files
+25 -1
+24
.env.example
···
+
# Slack API Configuration
+
# Get these from https://api.slack.com/apps
+
SLACK_TOKEN=xoxb-123456789012-123456789012-abcdefghijklmnopqrstuvwx
+
SLACK_SIGNING_SECRET=1234567890abcdef1234567890abcdef
+
+
# Environment
+
NODE_ENV=production
+
+
# Optional: Sentry Error Monitoring
+
# Get your DSN from https://sentry.io
+
# SENTRY_DSN=https://xxxxx@xxxx.ingest.us.sentry.io/123456
+
+
# Optional: Database Configuration
+
# Defaults to ./data/cachet.db if not set
+
# DATABASE_PATH=/path/to/cachet.db
+
+
# Optional: Server Port
+
# Defaults to 3000 if not set
+
# PORT=3000
+
+
# Admin Authentication
+
# Used for protected endpoints like /reset and /users/:id/purge
+
# Generate a secure random string for production
+
BEARER_TOKEN=your-secure-random-token-here
+1 -1
.gitignore
···
package-lock.json
**/*.bun
-
.env*
+
.env
data/
.crush