forked from hyperledger-labs/business-partner-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env-example
62 lines (49 loc) · 2 KB
/
.env-example
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
# ------------------------------------------------------------
# Business Partner Agent
# ------------------------------------------------------------
# localhost, ip address, dns name
BPA_HOST=localhost
BPA_PORT=8080
BPA_PROFILE_ENDPOINT=https://${BPA_HOST}/profile.jsonld
# Security Config
BPA_SECURITY_ENABLED=false
# Default username and password, set if running in production like environments
BPA_BOOTSTRAP_UN=admin
BPA_BOOTSTRAP_PW=changeme
# Run in web only mode without any ledger dependency and aries functionality
BPA_WEB_MODE=false
# Uni Resolver URL
BPA_RESOLVER_URL=https://resolver.4d8674d5248546c79689.westeurope.aksapp.io
# The ledger prefix that is configured with the Uni Resolver
BPA_DID_PREFIX=did:sov:iil:
# The Ledger Explorer
BPA_LEDGER_BROWSER=${LEDGER_URL}
# ------------------------------------------------------------
# ACA-PY
# ------------------------------------------------------------
# Enter wallet seed here:
#AGENT_SEED=0dcb2d7b444a4de591316231527aea1f
# Protect all admin endpoints with the provided API key
# If started via ngrok shell script the key is generated. Set it manually when running in production like environments
ACAPY_ADMIN_URL_API_KEY=2f9729eef0be49608c1cffd49ee3cc4a
# Specifies the label for this agent. This label is publicized (self-attested) to other agents as part of forming a connection
AGENT_NAME=ca-aca-py
# The Ledger Explorer
LEDGER_URL=https://indy-test.bosch-digital.de
# Default Docker config
AGENT_HTTP_PORT=8030
AGENT_ADMIN_PORT=8031
AGENT_ENDPOINT=http://${BPA_HOST}:${AGENT_HTTP_PORT}
ACAPY_ADMIN_URL=http://aca-py:${AGENT_ADMIN_PORT}
ACAPY_AGENT_URL=http://aca-py:${AGENT_HTTP_PORT}
# ------------------------------------------------------------
# Postges Wallet
# ------------------------------------------------------------
# Default Docker config
WALLET_TYPE=postgres_storage
WALLET_DATABASE=wallet_db
WALLET_ENCRYPTION_KEY=key
POSTGRESQL_WALLET_HOST=postgres
POSTGRESQL_WALLET_PORT=5432
POSTGRESQL_WALLET_USER=walletuser
POSTGRESQL_WALLET_PASSWORD=walletpassword