-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv-example
80 lines (64 loc) · 3.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
##
## ________ ________ _____ _____ __
## / _/ __ \/ ____/ / / / | / _/ | / /
## / // / / / / / /_/ / /| | / // |/ /
## _/ // /_/ / /___/ __ / ___ |_/ // /| /
## /___/_____/\____/_/ /_/_/ |_/___/_/ |_/
##
##
## -------> Chamber Of Commerce Legacy Web Server
##
## Please copy this file into a new file with name .env,
## and adjust the following variables to match your environment
## ↓↓↓↓
## ------------------------------------------------------------------------------------
## IEA API Host & Port
## Default values by NodeJS code: api:8000
## ↓↓↓↓-------------------------------------------------------------------------------
IDC_API_HOST=172.16.0.100
IDC_API_PORT=8000
## ------------------------------------------------------------------------------------
## Chamber Of Commerce Host & Port
## Required (no default values)
## ↓↓↓↓-------------------------------------------------------------------------------
CC_HOST=172.16.0.102
CC_PORT=8091
## ------------------------------------------------------------------------------------
## Chamber Of Commerce DID & Seed
## Please see test-pool in (Common repository) for more information
## ↓↓↓↓-------------------------------------------------------------------------------
CC_DID=BJqX84hzz2MEaDXNK4SLPK
CC_SEED=00000000000000000000000000000Kvk
## ------------------------------------------------------------------------------------
## Chamber Of Commerce IEA API User & Wallet parameters
## ↓↓↓↓-------------------------------------------------------------------------------
CC_USER=CC
CC_PASSWORD=dummy
CC_WALLET=CCWallet
CC_WALLET_KEY=dummy
## ------------------------------------------------------------------------------------
## Chamber Of Commerce Extra info used by mobile app (shared in connection offer messages)
## Default values in NodeJS code (as defined here)
## ↓↓↓↓-------------------------------------------------------------------------------
GOV_NAME=Chamber Of Commerce
GOV_DESCRIPTION=Chamber Of Commerce
GOV_LOGO_URL=http://23.97.243.176:8091/img/icons/android-chrome-512x512.png
## ------------------------------------------------------------------------------------
## Proof Template Details: Name & Trusted Credential Definition
##
## Required to know the trusted credential definition.
## To change it without restart, access the Admin UI portal and modify proof request template
## ↓↓↓↓-------------------------------------------------------------------------------
## IF PROOF TEMPLATE WITH THE GIVEN NAME IS NOT FOUND IN AGENT API, IT WILL BE GENERATED
CC_PROOF_TEMPLATE_NAME=ChamberOfCommerce-IdentityProof
## CURRENT PROOF TEMPLATE USES A ENV VARIABLE FOR THE TRUSTED CREDENTIAL ID
CC_TRUSTED_CRED_DEF_ID=Gc3HWtzjBuaGyMkSHgomzx:3:CL:41:TAG1
## ------------------------------------------------------------------------------------
## Start Up delay (in milliseconds)
## Used to introduce a delay before interacting with the IEA API
## This interaction on bootstrap create:
## - User & Wallet
## - Schema (Passport)
## - Credential Definitions & Revocation Registries
## ↓↓↓↓-------------------------------------------------------------------------------
CC_START_UP_INTERVAL=5000