-
Notifications
You must be signed in to change notification settings - Fork 35
/
.env
39 lines (33 loc) · 1.07 KB
/
.env
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
# Build configuration
VERBOSE_HARNESS=0
# Used to determine sandbox build type:
TYPE="source" # OR "channel"
# Used when TYPE==channel:
ALGOD_CHANNEL="nightly"
# Used when TYPE==source:
ALGOD_URL="https://github.com/algorand/go-algorand"
ALGOD_BRANCH="master"
ALGOD_SHA=""
# Used regardless of TYPE:
NETWORK_TEMPLATE="images/algod/DevModeNetwork.json" # refers to the ./images directory in the sandbox repo
NETWORK_NUM_ROUNDS=30000
NODE_ARCHIVAL="False"
INDEXER_URL="https://github.com/algorand/indexer"
INDEXER_BRANCH="main" # sandbox no longer supports the pre-refactor code currently in master.
INDEXER_SHA=""
CONDUIT_URL="https://github.com/algorand/conduit"
CONDUIT_BRANCH="master"
CONDUIT_SHA=""
# Sandbox configuration:
SANDBOX_URL="https://github.com/algorand/sandbox"
SANDBOX_BRANCH="master"
SANDBOX_CLEAN_CACHE=1
LOCAL_SANDBOX_DIR=".sandbox"
# replacement values for Sandbox's docker-compose:
ALGOD_CONTAINER=sdk-harness-algod
KMD_PORT=60001
ALGOD_PORT=60000
INDEXER_CONTAINER=sdk-harness-indexer
INDEXER_PORT=59999
POSTGRES_CONTAINER=sdk-harness-postgres
POSTGRES_PORT=65432