-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapp.json
34 lines (33 loc) · 918 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
33
34
{
"name": "pusher-channels-auth-example",
"description": "Simple example of an auth server for pusher channels",
"keywords": [
"pusher",
"channels"
],
"repository": "https://github.com/pusher/pusher-channels-auth-example",
"image": "heroku/nodejs",
"env": {
"APP_ID": {
"description": "AppId from the pusher dashboard"
},
"APP_KEY": {
"description": "AppKey from the pusher dashboard"
},
"APP_SECRET": {
"description": "AppSecret from the pusher dashboard"
},
"CLUSTER": {
"description": "Cluster from the pusher dashboard",
"required": false
},
"CHANNELS_HOST": {
"description": "Custom hostname of a channels cluster. Overrides `CLUSTER`",
"required": false
},
"CHANNELS_PORT": {
"description": "Custom port of a channels cluster. Used in conjunction with `HOST`",
"required": false
}
}
}