-
Notifications
You must be signed in to change notification settings - Fork 9
/
.env.sample
73 lines (57 loc) · 1.96 KB
/
.env.sample
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
### Remote Attestation settings ###
SPID=
SUB_KEY=
IAS_ROOT_CERT_PATH=config/ias_root_cert.pem
### Connection settings for each node ###
KEY_VAULT_FQDN=key-vault
KEY_VAULT_PORT=12345
KEY_VAULT_IP_ADDRESS=0.0.0.0
STATE_RUNTIME_PORT=8080
STATE_RUNTIME_IP_ADDRESS=172.16.0.3
ETH_HOST_PORT=8545
ETH_IP_ADDRESS=172.16.0.2
ETH_DOCKER_PORT=8545
AZURITE_IP_ADDRESS=172.16.0.4
AZURITE_BLOB_HOST_PORT=10010
AZURITE_TABLE_HOST_PORT=10011
IAS_URL=https://api.trustedservices.intel.com/sgx/dev/attestation/v3/report
### Blockchain settings ###
# Set CONFIRMATIONS as 0 if using ganache otherwise 1 or more
CONFIRMATIONS=0
# Set ACCOUNT_INDEX as 0 if using ganache otherwise 1 or more
ACCOUNT_INDEX=0
PASSWORD=anonify0101
EVENT_LIMIT=100
UNLOCK_DURATION=60
ANONIFY_ABI_PATH=contract-build/AnonifyWithEnclaveKey.abi
ANONIFY_BIN_PATH=contract-build/AnonifyWithEnclaveKey.bin
FACTORY_ABI_PATH=contract-build/DeployAnonify.abi
FACTORY_BIN_PATH=contract-build/DeployAnonify.bin
FACTORY_CONTRACT_ADDRESS=
### Package name settings ###
ENCLAVE_PKG_NAME=erc20
STATE_RUNTIME_ENCLAVE_PKG_NAME=erc20
KEY_VAULT_ENCLAVE_PKG_NAME=key_vault
### Request retry settings ###
REQUEST_RETRIES=10
RETRY_DELAY_MILLS=100
### TreeKEM settings ###
# MY_ROSTER_IDX must unique identifier in your group
MY_ROSTER_IDX=0
MAX_ROSTER_IDX=2
CMD_DEC_SECRET_DIR=.anonify/cmd-dec-secret
### MISC ###
# Set `disable`, if you don't want to connect to the key_vault node
BACKUP=
PJ_ROOT_DIR=/home/anonify-dev/anonify
# fixuid is used to fix volume-mounted files' ownership in Docker Linux. Set `skip` in macOS. `quiet` and `verbose` are also available.
FIXUID_MODE=skip
### Setting for developer environments. Not needed for the production usage. ###
COMPOSE_PROJECT_NAME=
COMPOSE_NETWORK_SUBNET=172.16.0.0/24
### Needs to be set only when running occlum docker containers ###
OCCLUM_ENCLAVE_IP_ADDRESS=172.18.0.2
OCCLUM_HOST_IP_ADDRESS=172.18.0.3
OCCLUM_ENCLAVE_PORT=50052
OCCLUM_HOST_PORT=50053
OCCLUM_COMPOSE_NETWORK_SUBNET=172.18.0.0/24