-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy path.env.sample
More file actions
35 lines (30 loc) · 1.25 KB
/
.env.sample
File metadata and controls
35 lines (30 loc) · 1.25 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
# This variable is used by the command `just arkd-checkout <tag>` to
# create and manage a dedicated checkout of the arkd repo. This can be
# convenient, but is not strictly necessary for local development.
ARK_GO_DIR=./ark-go
# The location of the arkd repository. This repository will be used to
# start and configure the arkd server when setting up the local
# development environment.
#
# If you have configured `ARK_GO_DIR`, you can use:
ARKD_DIR=${ARK_GO_DIR}/arkd
# Alternatively, you can point to a different checkout of arkd:
# ARKD_DIR=/path/to/arkd-repo
# Optional dedicated checkout for the introspector repo used by
# `just introspector-checkout <tag>`.
INTROSPECTOR_GO_DIR=./introspector-go
INTROSPECTOR_DIR=${INTROSPECTOR_GO_DIR}/introspector
# Environment variables forwarded to arkd when setting up local
# development environment.
ARKD_DB_TYPE=sqlite
ARKD_EVENT_DB_TYPE=badger
ARKD_LIVE_STORE_TYPE=inmemory
ARKD_VTXO_MIN_AMOUNT=1
# Highly recommend using values greater than or equal to 512 seconds
# (multiples of 512 specifically). Other values work on regtest, but
# the behaviour is confusing.
ARKD_UNILATERAL_EXIT_DELAY=512
ARKD_PUBLIC_UNILATERAL_EXIT_DELAY=512
ARKD_BOARDING_EXIT_DELAY=1024
ARKD_VTXO_TREE_EXPIRY=512
ARKD_CHECKPOINT_EXIT_DELAY=512