-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
74 lines (74 loc) · 1.92 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "Quid",
"description": "JWT server providing Refresh/Access tokens supporting HMAC, RSA, ECDSA and EdDSA",
"repository": "https://github.com/teal-finance/quid",
"logo": "https://raw.githubusercontent.com/teal-finance/quid/main/ui/public/img/logo.svg",
"keywords": [
"JWT",
"JSON Web Token",
"Refresh token",
"Access token",
"HMAC",
"RSA",
"ECDSA",
"EdDSA"
],
"addons": [
{
"plan": "heroku-postgresql"
}
],
"env": {
"QUID_KEY": {
"description": "An internal secret key for the Quid server used to encrypt sensitive data",
"generator": "secret"
},
"QUID_ADMIN_USR": {
"description": "The Quid administrator username",
"required": false,
"value": "admin"
},
"QUID_ADMIN_PWD": {
"description": "The administrator password",
"required": true
},
"POSTGRES_USER": {
"description": "The username used by the Quid server to connect to the Postgres server",
"required": false,
"value": "pguser"
},
"POSTGRES_PASSWORD": {
"description": "The database user password",
"required": true
},
"POSTGRES_DB": {
"description": "The database name of the Quid server",
"required": false,
"value": "quid"
},
"DB_HOST": {
"description": "The network location of the Postgres server",
"required": false,
"value": "localhost"
},
"DB_PORT": {
"description": "The TCP port to send the requests to the Postgres server",
"required": false,
"value": "5432"
},
"DB_URL": {
"description": "The info to connect to the Postgres server",
"required": false
},
"WWW_DIR": {
"description": "Folder of the web static files",
"required": false,
"value": "ui/dist"
},
"PORT": {
"description": "Listening port of the Quid server",
"required": true,
"value": "8090"
}
}
}