-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
49 lines (42 loc) · 2.55 KB
/
Copy path.env.example
File metadata and controls
49 lines (42 loc) · 2.55 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
47
48
49
# Rayls stack configuration — copy this file to `.env` in your STACK directory
# (the directory where you run `rayls init`), not into the CLI repo.
#
# Precedence: process environment > .env file. Values marked (regen) are baked
# into docker-compose.yaml at generation time — re-run `rayls init --local`
# after changing them. The *_SRC values are interpolated by compose on every
# run, so they apply without regenerating (rayls dev manages them for you).
# ------------------------------------------------------------------ deployer
# Your deployer key for the external public chain (64 hex chars, 0x prefix
# optional). REQUIRED for rayls-testnet stacks. `rayls init` prompts for it and writes it here (chmod 600). Fund a
# fresh key via https://www.rayls.com/community (~5 RAYLS per participant).
# Fully local stacks (--local) don't use it.
PUBLIC_CHAIN_PRIVATE_KEY=
# ------------------------------------------------- source versions (--local)
# Coordinated stack release: every component builds from tag v<RAYLS_VERSION>.
# Only meaningful once the component repos tag releases in lockstep; until then
# each component's default pin applies (contracts: lean-no-pnh-3.0.0;
# relayer & backend: v3.0.0). (regen)
#RAYLS_VERSION=3.0.0
# Per-component ref override — any branch, tag, or commit SHA. Wins over
# RAYLS_VERSION. (regen)
#CONTRACTS_REF=lean-no-pnh-3.0.0
#RELAYER_REF=v3.0.0
#BACKEND_REF=fix/reorg-handling
# Per-component repo override — e.g. your fork. NOTE: BuildKit clones these
# inside the Docker daemon, so custom ~/.ssh/config host aliases won't
# resolve here; use plain github.com URLs (and see RAYLS_SRC_DIR / *_SRC for
# the client-side alternative). (regen)
#BACKEND_REPO=git@github.com:you/rayls-privacy-backend.git
# Per-component local checkout — replaces the git context entirely, so no
# BuildKit git auth is involved. `rayls dev <component>` sets/unsets these;
# set them by hand only if you know the checkout is where you want it.
#CONTRACTS_SRC=/home/you/Parfin/rayls-privacy-contracts
#RELAYER_SRC=/home/you/Parfin/rayls-privacy-relayer-api
#BACKEND_SRC=/home/you/Parfin/rayls-privacy-backend
# Where `rayls dev` looks for (and clones) component checkouts.
# Default: the parent of the stack directory (checkouts side by side).
#RAYLS_SRC_DIR=/home/you/Parfin
# ------------------------------------------------------------------ images
# Image pulled and retagged to rayls-privacy-axyl:latest in --local mode
# (the node is a 30-90 min Rust build, so it isn't built from source).
#RAYLS_AXYL_IMAGE=public.ecr.aws/w0k9o1t3/rayls-demo/rayls-privacy-axyl:latest