generated from decentralized-identity/veramo-agent-deploy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
46 lines (46 loc) · 1.32 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
{
"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": {
"REACT_APP_BASE_URL": {
"description": "The url for which your DID will be based on",
"value": "https://appname.herokuapp.com"
},
"REACT_APP_DEFAULT_RECIPIENT": {
"description": "DID of the default recipient",
"value": "did:web:appname.herokuapp.com"
},
"API_NAME": {
"description": "Open API name",
"value": "Pulsar"
},
"API_KEY": {
"description": "A secret key for verifying requests",
"generator": "secret"
},
"PUBLIC_API_NAME": {
"description": "Open API name",
"value": "Pulsar Public"
},
"SECRET_KEY": {
"description": "Secret key for database encryption",
"generator": "secret"
},
"OPENSEA_API_KEY": {
"description": "Secret key for opensea API",
"value": "REPLACE_WITH_KEY"
},
"AGENT_ENDPOINT": {
"description": "Prefix for agent endpoints",
"value": "/agent"
}
}
}