-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.json
37 lines (37 loc) · 1.09 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
{
"name": "Philote",
"description": "A plug-and-play websockets server",
"repository": "https://github.com/pote/philote",
"keywords": ["golang", "websockets"],
"buildpacks": [
{
"url": "https://github.com/lucasefe/heroku-buildpack-go"
}
],
"env": {
"SECRET": {
"description": "The secret auth salt shared between Philote and your clients",
"value": ""
},
"LOGLEVEL": {
"description": "Change for more or less verbose output [debug|info|warning|error|panic]",
"value": "info"
},
"MAX_CONNECTIONS": {
"description": "Maximum amount of concurrent websocket connections allowed",
"value": "255"
},
"READ_BUFFER_SIZE": {
"description": "Size of the websocket read buffer, for most cases the default should be okay",
"value": "1024"
},
"WRITE_BUFFER_SIZE": {
"description": "Size of the websocket write buffer, for most cases the default should be okay",
"value": "1024"
},
"CHECK_ORIGIN": {
"description": "Verify Origin header on websocket handshake",
"value": "false"
}
}
}