-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
32 lines (32 loc) · 907 Bytes
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "Lightbox Quote Checker",
"description": "A tool that helps you determine if a message can be displayed on a lightbox sign, considering character limits, substitutions, and length constraints. Integrates into Slack as a bot.",
"repository": "https://github.com/HellooooNewman/Lightbox-Quote-Checker",
"keywords": ["node", "express", "slack", "bot", "lightbox"],
"env": {
"SLACK_AUTH_TOKEN": {
"description": "The bot token for your Slack app.",
"required": true
},
"SLACK_SIGNING_SECRET": {
"description": "The signing secret for your Slack app.",
"required": true
},
"PORT": {
"description": "The port on which the app will run.",
"required": true,
"value": "3000"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}