-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.env
38 lines (27 loc) · 1.1 KB
/
template.env
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
# Environment configuration (development or production)
NODE_ENV=development
CONTEXT_PATH=/release2/vc
# Internal port in the host machine that provides access to the VC service server container
HOST_PORT=4200
# Server port
SERVER_PORT=4200
# Server public uri
SERVER_PUBLIC_URI=<your server domain here>
# Reverse proxy. Can be 0 (no reverse proxy) or 1 (reverse proxy).
REVERSE_PROXY=0
# During development, you can use this proxies for providing public access for your local services
USE_NGROK=0
# Security configuration
## Many passwords can be used (comma-separated). If not provided they are autogenerated
JWKS_KEYS_PATH=./misc/jwks.json
IDENTITY_PATH=./misc/identity.json
# Blockchain
RPC_URL=<blockchain url here>
# List of accepted issuers of verifiable claims
WHITELIST=./default/misc/whitelist.js
# Address of the smart contract for credential revocation
REGISTRY_CONTRACT=<contract address here>
CONTRACT_ABI=./default/misc/credential-registry.json
# Address of the smart contract registry for issuers
ISSUER_REGISTRY_CONTRACT=<contract address here>
ISSUER_REGISTRY_ABI=./default/misc/issuer-registry.json