-
Notifications
You must be signed in to change notification settings - Fork 7
/
example.env
48 lines (36 loc) · 1.32 KB
/
example.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
40
41
42
43
44
45
46
47
48
###### [Build config] ######
# Repository to use
OL_REPO='https://github.com/0LNetworkCommunity/libra-framework.git'
# Release tag or branch name to checkout and build
OL_BRANCH='release-6.9.0-rc.10'
###### [Project config] ######
# 0L Docker image
# Available tags: https://hub.docker.com/r/nourspace/0l/tags
OL_IMAGE='nourspace/0l:release-6.9.0-rc.10'
# Host path to be mounted (node_data) and used as DATA_DIR for 0L services
OL_DATA_DIR='~/0L/libra'
OL_SOURCE_DIR='~/0L/libra-framework'
OL_RECOVERY_DIR='~/0L/libra-recovery'
# Project name
# This value is prepended along with the service name to the container on start up
COMPOSE_PROJECT_NAME='0l'
###### [Services config] ######
### Node (fullnode, validator, vfn) ###
# This is used to name the container of the `node` service and load its respective config,
# usually located in ${OL_DATE_DIR}/${OL_NODE_MODE}.node.yaml
OL_NODE_MODE='validator'
### Tower ###
# Enable if your fullnode/validator are not in sync so tower uses upstream instead
#OL_TOWER_USE_FIRST_UPSTREAM='--use-first-url'
# To start tower in operator mode
OL_TOWER_OPERATOR='--is-operator'
# To start tower in non-operator mode
#OL_TOWER_OPERATOR=''
#OL_TOWER_TEST='y'
#MNEM='SOME WORDS'
# Verbose logging
OL_TOWER_VERBOSE='--verbose'
# Rust log level
RUST_LOG='error'
# Capture backtrace on error
RUST_BACKTRACE='1'