generated from decentralized-identity/veramo-agent-deploy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
38 lines (38 loc) · 1.15 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
{
"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:hobby-dev"],
"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"
},
"PUBLIC_SCHEMA_URL": {
"description": "The url for the public read-only schema",
"value": "https://APP_NAME.herokuapp.com/public-open-api.json"
}
}
}