File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,3 +24,10 @@ go.work.sum
2424
2525# env file
2626.env
27+ .envrc
28+
29+ # database file
30+ plusplus.db
31+
32+ # binary file
33+ plusplusbot
Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ The following settings are required to run this bot:
2626 - ` channels:history ` (to read channel message history)
2727 - ` chat:write ` (to send messages)
2828 - ` user:read ` (to read user information)
29+ - Event Subscriptions
30+ - Bot Events
31+ - ` message.channels ` (to handle channel messages)
32+
33+ See our example [ slack-app-manifest.json] ( slack-app-manifest.json ) for more details.
2934
3035## Setup
3136
Original file line number Diff line number Diff line change 1+ {
2+ "display_information" : {
3+ "name" : " plusplusbot"
4+ },
5+ "features" : {
6+ "bot_user" : {
7+ "display_name" : " plusplusbot" ,
8+ "always_online" : false
9+ }
10+ },
11+ "oauth_config" : {
12+ "scopes" : {
13+ "bot" : [
14+ " app_mentions:read" ,
15+ " channels:history" ,
16+ " chat:write" ,
17+ " users:read"
18+ ]
19+ }
20+ },
21+ "settings" : {
22+ "event_subscriptions" : {
23+ "bot_events" : [
24+ " message.channels"
25+ ]
26+ },
27+ "interactivity" : {
28+ "is_enabled" : true
29+ },
30+ "org_deploy_enabled" : false ,
31+ "socket_mode_enabled" : true ,
32+ "token_rotation_enabled" : false
33+ }
34+ }
You can’t perform that action at this time.
0 commit comments