-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
65 lines (65 loc) · 1.68 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "Streen",
"description": "A centralized WebSocket Twitch Chat interface",
"repository": "https://github.com/SupportClass/streen",
"logo": "https://i.imgur.com/7LNvGeK.jpg",
"keywords": [
"node",
"twitch",
"chat",
"relay",
"socket",
"websocket",
"socket.io"
],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/vpzomtrrfrt/buildpack-node-npm-deploy-tasks"
}
],
"env": {
"DEPLOY_TASKS": {
"description": "A space-separated list of npm scripts to run on each deploy. The \"migrate\" script is used to run the necessary PostgreSQL database migrations.",
"value": "migrate"
},
"PERSISTENT": {
"description": "If true, some application statte (such as the list of channels to monitor via the !notifyoffline command) will be persisted into Postgres.",
"value": "true"
},
"SECRET_KEY": {
"description": "A secret key, used as a pre-shared key to authenticate clients.",
"generator": "secret"
},
"TWITCH_CLIENT_ID": {
"description": "A Twitch API ClientID, used for making some API calls."
},
"TWITCH_USERNAME": {
"description": "The Twitch username of the account to connect to chat as."
},
"TWITCH_PASSWORD": {
"description": "The password of the Twitch account to connect to chat as."
},
"SLACK_BOT_TOKEN": {
"description": "(Optional) The token of a Slack bot, used to post status messages.",
"required": false
},
"SLACK_STATUS_CHANNEL": {
"description": "(Optional) The Slack channel in which to post status updates.",
"required": false
}
}
}