-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (33 loc) · 1.66 KB
/
Copy path.env.example
File metadata and controls
37 lines (33 loc) · 1.66 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
# RpcNode toolkit env — copy to `.env` for local overrides.
# Panel compose (docker-compose.panel.yml) is multi-network control plane.
# Do NOT use TRON_* for panel — product names are PANEL_* / RPCNODE_*.
# --- Standalone panel (Mac / control host) — docker-compose.panel.yml ---
PANEL_PORT=8093
# Prefer empty default — resolve agents via panel registry (server_id), not a hard-coded host.
# PANEL_DEFAULT_AGENT_URL=
# PANEL_DEFAULT_AGENT_TOKEN=
# AGENT_API_TOKEN=
# AGENT_DOWNLOAD_URL=https://rpcnode.dev/install/agent.sh
# PANEL_COLLECTOR_WORKERS=24
# Panel human login (scripts/panel-token.sh, add-node.sh, …) — local only, never commit real values.
# PANEL_URL=http://127.0.0.1:8093
# PANEL_USER=admin
# PANEL_PASS=changeme
# Or put PANEL_USER/PANEL_PASS in .cursor/secrets/rpcnode-panel-pass.env (gitignored).
# TOKEN=$(./scripts/panel-token.sh)
# curl -H "Authorization: Bearer $TOKEN" "$PANEL_URL/api/status.json?node=<NODE_UUID>"
# Optional: public URLs when documenting / scripting against a remote agent + panel.
# RPCNODE_PUBLIC_BASE=http://203.0.113.10:39090
# RPCNODE_PANEL_BASE=http://127.0.0.1:8093
# --- Host agent tip (optional; written by install/agent.sh on the server) ---
# Canonical listen / instance env (multi-chain). Legacy TRON_* still read as fallback.
# RPCNODE_ENV=mainnet
# RPCNODE_PUBLIC_PORT=39090
# RPCNODE_GATEWAY_PORT=39090
# RPCNODE_GATEWAY_LISTEN=0.0.0.0
# RPCNODE_AGENT_PORT=0
# RPCNODE_PANEL_PORT=0
#
# Deprecated aliases (one release): TRON_ENV, TRON_PUBLIC_PORT, TRON_GATEWAY_PORT,
# TRON_PANEL_PORT, TRON_PUBLIC_BASE, TRON_PANEL_BASE, TRON_GATEWAY_LISTEN.
# Network identity for a leaf remains TRON_NETWORK=bitcoin|tron|… (agent profile).