this repo has no description
at main 899 B view raw
1# Slack Configuration 2SLACK_BOT_TOKEN=xoxb-your-bot-token-here 3SLACK_SIGNING_SECRET=your-signing-secret-here 4 5# Slack workspace URL (for admin API calls) 6SLACK_API_URL=https://hackclub.enterprise.slack.com 7 8# Optional: For channel manager permission checks 9SLACK_USER_COOKIE=your-slack-cookie-here 10SLACK_USER_TOKEN=your-user-token-here 11 12# Optional: Enable Cachet API for user lookups (recommended for better performance) 13CACHET_ENABLED=true 14 15# IRC Configuration 16IRC_NICK=slackbridge 17NICKSERV_PASSWORD=your-nickserv-password-here 18NICKSERV_EMAIL=your-email@example.com 19 20# Admin users (comma-separated Slack user IDs) 21ADMINS=U1234567890,U0987654321 22 23# Hack Club CDN Token (for file uploads) 24CDN_TOKEN=your-cdn-token-here 25 26# Server Configuration (optional) 27PORT=3000 28 29# Note: Channel and user mappings are now stored in the SQLite database (bridge.db) 30# Use the API or database tools to manage mappings