-
Notifications
You must be signed in to change notification settings - Fork 23
/
app.json
34 lines (34 loc) · 998 Bytes
/
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
{
"name": "Veramo Agent",
"description": "Minimal deployment of @veramo/cli agent server to Heroku",
"repository": "https://github.com/uport-project/veramo-agent-deploy",
"keywords": [
"node",
"veramo",
"identity",
"verifiable-credentials"
],
"addons": ["heroku-postgresql:mini"],
"env": {
"BASE_URL": {
"description": "The url for which your DID will be based on",
"value": "https://APP_NAME.herokuapp.com"
},
"API_KEY": {
"description": "A secret key for verifying requests",
"generator": "secret"
},
"SECRET_KEY": {
"description": "Secret key for database encryption",
"generator": "secret"
},
"AGENT_PATH": {
"description": "The path where the agent will be served from",
"value": "/agent"
},
"MESSAGING_PATH": {
"description": "The messaging endpoint for your agent",
"value": "/messaging"
}
}
}