mirror of https://github.com/buster-so/buster.git
13 lines
595 B
Plaintext
13 lines
595 B
Plaintext
|
# Slack Integration Testing - Simple Setup
|
||
|
# Just 2 required variables to get started!
|
||
|
|
||
|
# Your bot token (starts with xoxb-)
|
||
|
# Get it from: https://api.slack.com/apps → Your App → OAuth & Permissions → Bot User OAuth Token
|
||
|
# Required scopes: channels:read, channels:manage, channels:join, chat:write, chat:write.public, channels:history
|
||
|
SLACK_BOT_TOKEN=xoxb-your-bot-token-here
|
||
|
|
||
|
# A channel ID where the bot can send test messages
|
||
|
# Get it by: Right-clicking any channel → View channel details → Scroll to bottom
|
||
|
SLACK_CHANNEL_ID=C1234567890
|
||
|
|
||
|
# That's it! Run: npm run test:integration
|