-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy path.env.example
More file actions
46 lines (33 loc) · 1.23 KB
/
.env.example
File metadata and controls
46 lines (33 loc) · 1.23 KB
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
#DAPI config settings sample and defaults
#To overwrite: create a new .env file in the project root then
#copy this file content and use custom values where applicable
# Set to true if you are going to run DAPI on the livenet.
LIVENET=false
# Ports on which DAPI server will listen for client requests
API_JSON_RPC_PORT=2501
API_GRPC_PORT=2500
TX_FILTER_STREAM_GRPC_PORT=2510
# Protocol for connecting to dashcore RPC
DASHCORE_RPC_PROTOCOL=http
# DashCore service connection setting
DASHCORE_RPC_USER=dashrpc
DASHCORE_RPC_PASS=password
DASHCORE_RPC_HOST=127.0.0.1
DASHCORE_RPC_PORT=30002
DASHCORE_ZMQ_HOST=127.0.0.1
DASHCORE_ZMQ_PORT=30003
# Can be `testnet`, `regtest` and `livenet`
NETWORK=testnet
# Time in ms for garbage collecting inactive bloomfiltering clients
BLOOM_FILTER_PERSISTENCE_TIMEOUT=60000
BLOCK_HEADERS_CACHE_SIZE=500
TENDERMINT_RPC_HOST=localhost
TENDERMINT_RPC_PORT=26657
DRIVE_RPC_HOST=localhost
DRIVE_RPC_PORT=26670
# SERVICE_IMAGE_DRIVE= # Drive image name, if omitted dashpay/dashrive is used
# SERVICE_IMAGE_DAPI= # DAPI image name, if omitted dashpay/dapi is used
# SERVICE_IMAGE_CORE= # Dash Core image name, if omitted dashpay/dashcore is used
NODE_ENV=production
LOG_LEVEL=trace
WAIT_FOR_ST_RESULT_TIMEOUT=80000