-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
43 lines (34 loc) · 2.09 KB
/
Copy path.env.example
File metadata and controls
43 lines (34 loc) · 2.09 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
# Copied to .env on first ./start.sh. Defaults pull published GHCR images
# (no local Docker build). Override tags/digests as needed.
APPROVING_PORT=8080
APPROVING_GATEWAY_PORT=8899
APPROVING_SANDBOX_GATEWAY_URL=http://127.0.0.1:8899
APPROVING_DEPLOYMENT_MODE=local-demo
# Shared gateway Bearer token (SBGW_API_KEYS + APPROVING_SANDBOX_GATEWAY_API_KEY).
# local-demo default; change before exposing beyond loopback.
SANDBOX_GATEWAY_API_KEY=approving-local-demo
# Published images (GHCR). Tag 0.1.2-beta matches the current public packages.
# Prefer @sha256:... digests for immutable releases / ./release-smoke.sh.
APPROVING_IMAGE=ghcr.io/cocofhu/approving:0.1.2-beta
SANDBOX_GATEWAY_IMAGE=ghcr.io/cocofhu/sandbox-gateway:0.1.2-beta
# Optional GLOBAL FORCE for all acpBackends (smoke / digest pin). Leave unset so
# each backend uses APPROVING_SANDBOX_IMAGE_* below. If set, ./start.sh maps it to
# APPROVING_SANDBOX_IMAGE (or set APPROVING_SANDBOX_IMAGE directly).
# SANDBOX_IMAGE=ghcr.io/cocofhu/universal-sandbox-cursor:0.1.2-beta
# APPROVING_SANDBOX_IMAGE=
# Per-backend sandbox runtimes (default GHCR). ./start.sh pulls all four.
APPROVING_SANDBOX_IMAGE_CURSOR=ghcr.io/cocofhu/universal-sandbox-cursor:0.1.2-beta
APPROVING_SANDBOX_IMAGE_CLAUDE_CODE=ghcr.io/cocofhu/universal-sandbox-claude_code:0.1.2-beta
APPROVING_SANDBOX_IMAGE_CODEBUDDY=ghcr.io/cocofhu/universal-sandbox-codebuddy:0.1.2-beta
APPROVING_SANDBOX_IMAGE_TRAE=ghcr.io/cocofhu/universal-sandbox-trae:0.1.2-beta
# Gateway: per-provider template; SANDBOX_IMAGE (or default cursor) is fallback only.
SBGW_IMAGE_TEMPLATE=ghcr.io/cocofhu/universal-sandbox-{provider}:0.1.2-beta
# Loopback doctor control-plane token. Empty → ./start.sh generates one.
APPROVING_DOCTOR_TOKEN=
# Demo login admin/demo1234 is injected by ./start.sh (APPROVING_AUTH_USERS).
# Do not put bcrypt hashes in this file — `$` is mangled by shell/compose .env.
# Optional: source-build / HMR stack via `./start.sh dev`
# APPROVING_GATEWAY_SANDBOX_IMAGE=universal-sandbox-cursor:local
# SANDBOX_GATEWAY_DIR=./sandbox-gateway
# GOPROXY=https://goproxy.cn,direct
# GOSUMDB=sum.golang.google.cn