Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions cli-config.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -1406,6 +1406,11 @@ updates:
# (the ~/.hermes/.env file is reserved for API keys and secrets).
#
# dashboard:
# # full: complete admin dashboard (default)
# # lightweight: bounded read-only dashboard; loopback-only unless the
# # launch explicitly passes --insecure
# mode: full
#
# oauth:
# client_id: "" # agent:{instance_id}; Portal provisions this at deploy
# portal_url: "" # blank β†’ default https://portal.nousresearch.com
Expand Down
3 changes: 3 additions & 0 deletions hermes_cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2036,6 +2036,9 @@ def _ensure_hermes_home_managed(home: Path):

# Web dashboard settings
"dashboard": {
# full: complete FastAPI/React admin dashboard. lightweight: bounded,
# read-only stdlib dashboard for memory-constrained hosts.
"mode": "full",
"theme": "default", # Dashboard visual theme: "default", "midnight", "ember", "mono", "cyberpunk", "rose"
# Process-isolation rollout controls. Runtime reads these through the
# raw config loader, so tui_gateway.server also owns explicit defaults.
Expand Down
Loading
Loading