4be98d7080
* cleanup openclaw session leftovers - hermes can breathe now * fix: load hermes adapter env from .env * fix: redact secrets from hermes adapter error output * addressed review findings * address luke findings #2
51 lines
1.8 KiB
Bash
51 lines
1.8 KiB
Bash
# Browser/client gateway URL (build-time — requires `npm run build` after changes)
|
|
NEXT_PUBLIC_GATEWAY_URL=ws://localhost:18789
|
|
|
|
# Runtime gateway URL — takes effect on restart without a rebuild.
|
|
# Use this instead of NEXT_PUBLIC_GATEWAY_URL when you want to change the
|
|
# gateway endpoint without re-running `npm run build`.
|
|
# CLAW3D_GATEWAY_URL=ws://localhost:18789
|
|
# CLAW3D_GATEWAY_TOKEN=
|
|
# Optional: tell Studio which backend that runtime gateway URL represents.
|
|
# Valid values: openclaw, hermes, demo, custom
|
|
# CLAW3D_GATEWAY_ADAPTER_TYPE=openclaw
|
|
|
|
|
|
# HERMES_API_URL=http://localhost:8642
|
|
# HERMES_API_KEY=change-me-local-dev
|
|
# HERMES_MODEL=hermes-agent
|
|
|
|
# Debug UI
|
|
DEBUG=true
|
|
|
|
# App server
|
|
# PORT=3000
|
|
# HOST=127.0.0.1
|
|
|
|
# Optional: required only for public/remote deployments
|
|
# STUDIO_ACCESS_TOKEN=
|
|
# Advanced only: some gateway-host operations can still use SSH, but marketplace skill install does not require it.
|
|
# OPENCLAW_GATEWAY_SSH_TARGET=
|
|
# OPENCLAW_GATEWAY_SSH_USER=
|
|
# OPENCLAW_GATEWAY_SSH_PORT=
|
|
# OPENCLAW_GATEWAY_SSH_STRICT_HOST_KEY_CHECKING=accept-new
|
|
|
|
# Hermes Agent adapter (alternative to OpenClaw)
|
|
# Run `npm run hermes-adapter` to start the adapter, then connect Claw3D to ws://localhost:18789
|
|
# HERMES_API_URL=http://localhost:8642
|
|
# HERMES_API_KEY=
|
|
# HERMES_ADAPTER_PORT=18789
|
|
# HERMES_MODEL=hermes
|
|
# HERMES_AGENT_NAME=Hermes
|
|
# If CLAW3D_GATEWAY_URL is unset, Studio can still detect this local adapter port.
|
|
|
|
# Demo gateway (no OpenClaw or Hermes required)
|
|
# Run `npm run demo-gateway` and connect Claw3D to ws://localhost:18789
|
|
# DEMO_ADAPTER_PORT=18789
|
|
# If CLAW3D_GATEWAY_URL is unset, Studio can still detect this local adapter port.
|
|
|
|
# Optional: voice features
|
|
# ELEVENLABS_API_KEY=
|
|
# ELEVENLABS_VOICE_ID=21m00Tcm4TlvDq8ikWAM
|
|
# ELEVENLABS_MODEL_ID=eleven_flash_v2_5
|