-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv-example
66 lines (54 loc) · 2.5 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
##
## ________ ________ _____ _____ __
## / _/ __ \/ ____/ / / / | / _/ | / /
## / // / / / / / /_/ / /| | / // |/ /
## _/ // /_/ / /___/ __ / ___ |_/ // /| /
## /___/_____/\____/_/ /_/_/ |_/___/_/ |_/
##
##
## -------> Government 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
## ------------------------------------------------------------------------------------
## Government Host & Port
## Required (no default values)
## ↓↓↓↓-------------------------------------------------------------------------------
GOV_HOST=172.18.0.5
GOV_PORT=8090
## ------------------------------------------------------------------------------------
## Government DID & Seed
## Please see test-pool in (Common repository) for more information
## ↓↓↓↓-------------------------------------------------------------------------------
GOV_DID=Th7MpTaRZVRYnPiabds81Y
GOV_SEED=0000000000000000000000Government
## ------------------------------------------------------------------------------------
## Government IEA API User & Wallet parameters
## ↓↓↓↓-------------------------------------------------------------------------------
GOV_USER=government
GOV_PASSWORD=dummy
GOV_WALLET=governmentWallet
GOV_WALLET_KEY=dummy
## ------------------------------------------------------------------------------------
## Government Extra info used by mobile app (shared in connection offer messages)
## Default values in NodeJS code (as defined here)
## ↓↓↓↓-------------------------------------------------------------------------------
GOV_NAME=Government
GOV_DESCRIPTION=Example Government
GOV_LOGO_URL=http://23.97.243.176:8090/img/icons/android-chrome-512x512.png
## ------------------------------------------------------------------------------------
## 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
## ↓↓↓↓-------------------------------------------------------------------------------
GOV_START_UP_INTERVAL=5000