-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
26 lines (22 loc) · 1.2 KB
/
Copy pathenv.example
File metadata and controls
26 lines (22 loc) · 1.2 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
# Copy this file to .env (gitignored) and fill in your local paths:
# cp env.example .env
# Loaded by scripts/run.sh (and the commands in README.md).
# Path to the fkst-framework binary built from the fkst-substrate repo.
# Typically the sibling checkout: <parent>/fkst-substrate/target/debug/fkst-framework
BIN=/path/to/fkst-substrate/target/debug/fkst-framework
# Set to skip local freshness builds before test/run/supervise.
# FKST_NO_AUTOBUILD=1
# --- Optional host config (for real runs; the integration test sets its own) ---
# FKST_GITHUB_REPO=owner/repo
# FKST_GITHUB_WRITE=1
# FKST_GITHUB_WRITE is the only write posture switch:
# unset/anything else = dry-run; 1 = autonomous real writes.
# --- Runtime roots ---
# FKST_RUNTIME_ROOT is best-effort scratch for local worktrees, locks, logs,
# cache, and once marks. It can be temporary for one-shot dogfood runs.
# FKST_DURABLE_ROOT is the durable redb delivery store for supervise/reliable
# delivery. Real supervise requires it once reliable subscriptions exist
# (default). Keep it on a separate path from FKST_RUNTIME_ROOT; do not point both
# at the same disposable scratch directory.
# FKST_RUNTIME_ROOT=/path/to/scratch
# FKST_DURABLE_ROOT=/path/to/durable