forked from centrifugal/centrifugo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 1.3 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": "Centrifugo",
"description": "Centrifugo – scalable 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": "github.com/centrifugal/centrifugo/v3/internal/build.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_TOKEN_HMAC_SECRET_KEY": {
"description": "Centrifugo HMAC 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_TTL": "0",
"CENTRIFUGO_RECOVER": "0",
"CENTRIFUGO_DEBUG": "0",
"CENTRIFUGO_ALLOWED_ORIGINS": "*"
}
}