forked from centrifugal/centrifugo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
36 lines (36 loc) · 1.2 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
{
"name": "Centrifugo",
"description": "Centrifugo – real-time messaging server",
"repository": "https://github.com/centrifugal/centrifugo",
"logo": "https://avatars1.githubusercontent.com/u/6236442?v=3&s=200",
"keywords": ["go", "pubsub", "websocket", "real-time", "sockjs", "redis", "json", "protobuf"],
"env": {
"GO_LINKER_SYMBOL": "main.VERSION",
"GO_LINKER_VALUE": "dev",
"CENTRIFUGO_ADMIN_PASSWORD": {
"description": "Admin password used to log into admin web panel",
"generator": "secret"
},
"CENTRIFUGO_ADMIN_SECRET": {
"description": "Admin secret used to generate admin access token",
"generator": "secret"
},
"CENTRIFUGO_SECRET": {
"description": "Centrifugo secret to generate JWT",
"generator": "secret"
},
"CENTRIFUGO_API_KEY": {
"description": "Centrifugo API key",
"generator": "secret"
},
"CENTRIFUGO_PUBLISH": "0",
"CENTRIFUGO_SUBSCRIBE_TO_PUBLISH": "0",
"CENTRIFUGO_ANONYMOUS": "0",
"CENTRIFUGO_JOIN_LEAVE": "0",
"CENTRIFUGO_PRESENCE": "0",
"CENTRIFUGO_HISTORY_SIZE": "0",
"CENTRIFUGO_HISTORY_LIFETIME": "0",
"CENTRIFUGO_HISTORY_RECOVER": "0",
"CENTRIFUGO_DEBUG": "0"
}
}