-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (40 loc) · 1.93 KB
/
Copy path.env.example
File metadata and controls
46 lines (40 loc) · 1.93 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
# Hypercluster challenge (no secrets — placeholders only)
# CHALLENGE_* env prefix is owned by Base ChallengeSettings.
# HYPER_* env prefix is owned by Hypercluster product knobs.
CHALLENGE_SLUG=hypercluster
CHALLENGE_NAME=Hypercluster
CHALLENGE_VERSION=0.1.0
# Absolute SQLite URL (four leading slashes after scheme host-empty form).
# Default and production path: /data/challenge.sqlite3 — never BASE_DATABASE_URL.
CHALLENGE_DATABASE_URL=sqlite+aiosqlite:////data/challenge.sqlite3
# Prefer a secret file; or set CHALLENGE_SHARED_TOKEN for local dev only.
CHALLENGE_SHARED_TOKEN_FILE=/run/secrets/base/challenge_token
# CHALLENGE_SHARED_TOKEN=
# Listen (container default 8000; mission host bind uses 3200 via uvicorn --port).
CHALLENGE_HOST=0.0.0.0
CHALLENGE_PORT=8000
# Product knobs (HYPER_*). These must not break /health /ready /version.
# HYPER_COMBINED_WORKER=false
# HYPER_COMBINED_WORKER_INTERVAL_SECONDS=5
# HYPER_TEE_LIVE=false
# HYPER_TEE_BONUS_TDX=1.08
# HYPER_TEE_BONUS_TDX_GPU=1.20
# HYPER_WEIGHT_PUSH_INTERVAL_S=120
# HYPER_SCORE_WINDOW_ATTEMPTS=50
# HYPER_EFFICIENCY_FLOOR=0.0
# Raw-weight push target (Base master or mission mock-master :3201).
# Commercial cloud control planes are hard-denied by product outbound policy.
# HYPER_MASTER_BASE_URL=http://127.0.0.1:3201
# Fabric honesty sim injects (local/dev only; default false leaves normal path):
# HYPER_SIM_INVENTORY_SPOOF=false
# HYPER_SIM_ETH_FALLBACK=false
# HYPER_SIM_HONESTY_LEVEL=l1
# HYPER_SIM_LAUNCH_FAIL=false
# HYPER_SIM_LAUNCH_TIMEOUT=false
# ---------------------------------------------------------------------------
# NOT product settings. Verda / commercial GPU broker credentials (if used for
# maintainer-only external QA) live outside this tree, e.g.
# /root/.config/hypercluster-mission/verda.env
# and are NEVER loaded by challenge processes or default pytest.
# Do not add VERDA_* keys here.
# ---------------------------------------------------------------------------