Skip to content

Commit e8eab25

Browse files
authored
feat: setup app settings using a manifest json file with required features
2 parents dfd02e4 + ce94044 commit e8eab25

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

manifest.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"display_information": {
3+
"name": "Getting Started Bolt App"
4+
},
5+
"features": {
6+
"app_home": {
7+
"home_tab_enabled": false,
8+
"messages_tab_enabled": true,
9+
"messages_tab_read_only_enabled": false
10+
},
11+
"bot_user": {
12+
"display_name": "BoltApp",
13+
"always_online": true
14+
}
15+
},
16+
"oauth_config": {
17+
"scopes": {
18+
"bot": ["channels:history", "chat:write", "im:history"]
19+
}
20+
},
21+
"settings": {
22+
"event_subscriptions": {
23+
"bot_events": ["message.channels", "message.im"]
24+
},
25+
"interactivity": {
26+
"is_enabled": true
27+
},
28+
"org_deploy_enabled": false,
29+
"socket_mode_enabled": true,
30+
"token_rotation_enabled": false
31+
}
32+
}

0 commit comments

Comments
 (0)