-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
49 lines (49 loc) · 1.33 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
{
"name": "Coeus",
"description": "It is a config service developed for other services or programs to use.",
"keywords": [
"config",
"configservice",
"flag",
"flagmanager",
"manager"
],
"website": "https://github.com/erdemkosk/coeus",
"repository": "https://github.com/erdemkosk/coeus",
"logo": "https://github.com/erdemkosk/coeus/raw/master/coeus.svg",
"env": {
"ADMIN_USER_ID": {
"description": "For auth side u need to define identity",
"value": "testUser"
},
"ADMIN_USER_PASS": {
"description": "For auth side u need to define identity",
"value": "password"
},
"JWT_SECRET": {
"description": "A secret key for verifying the integrity of jwt.",
"generator": "secret"
},
"MONGO_DB_CONNECTION_STRING": {
"description": "Mongo db connection string.",
"value": ""
},
"MONGO_DB_NAME": {
"description": "Db name.",
"value": "config"
},
"REDIS_HOST": {
"description": "Redis host for cache.",
"value": ""
},
"REDIS_PASSWORD": {
"description": "Redis password for connection",
"value": ""
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-go.git"
}
]
}