forked from fluencelabs/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.env
44 lines (33 loc) · 1.56 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
# Display debug logs for cli and dependencies
# DEBUG=fcli:debug
# Remove colors from CLI output
# FORCE_COLOR=0
# Fluence network to use for tests. Can be 'stage', 'dar', 'kras' or 'local'
# 'local' multiaddresses are currently hardcoded at `src/lib/multiaddres.ts`
# FLUENCE_ENV="local"
# To set path for the user's .fluence dir. Default: ~/.fluence (for Windows: %LOCALAPPDATA%\fluence)
# FLUENCE_USER_DIR="/absolute/path/to/users/.fluence"
# CLI Dependency override examples
# FCLI_V_NOX="fluencelabs/nox:0.4.0"
# FCLI_V_CHAIN="docker.fluence.dev/aurora:0.2.11"
# FCLI_V_RUST_TOOLCHAIN="nightly-2023-08-27-x86_64"
# FCLI_V_NPM_FLUENCELABS_AQUA_LIB="0.7.7"
# FCLI_V_NPM_FLUENCELABS_SPELL="0.5.26"
# FCLI_V_CARGO_MARINE="0.17.0"
# FCLI_V_CARGO_MREPL="0.24.0"
# FCLI_V_CARGO_MARINE_RS_SDK="0.10.1"
# FCLI_V_CARGO_MARINE_RS_SDK_TEST="0.11.0"
# environment variables to be used by Fluence CLI maintainers to develop Fluence CLI:
# To turn on Countly debugger
# DEBUG_COUNTLY="true"
# Set to false, to run tests synchronously (test are running in parallel by default)
# Doesn't affect tests in different files (jest runs tests in different files in parallel by default.
# Can be changed with -i/--runInBand jest flags)
# RUN_TESTS_IN_PARALLEL="true"
# example of cargo env variables
# CARGO_REGISTRIES_FLUENCE_INDEX="git://crates.fluence.dev/index"
# CARGO_REGISTRIES_FLUENCE_TOKEN="<token>"
# CARGO_REGISTRY_DEFAULT="fluence"
# example of npm env variables
# You also need to do `npm login --registry=https://npm.fluence.dev` after that
# NPM_CONFIG_REGISTRY="https://npm.fluence.dev"