27 lines
1.3 KiB
Plaintext
27 lines
1.3 KiB
Plaintext
# Hermes Workspace Configuration
|
|
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# HERMES BACKEND (Required)
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
# Hermes FastAPI backend URL
|
|
# Default: http://127.0.0.1:8642
|
|
HERMES_API_URL=http://127.0.0.1:8642
|
|
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# HERMES WORKSPACE ACCESS CONTROL (Optional)
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
# Password-protect Hermes Workspace web interface
|
|
# Leave empty for no authentication (default for local use)
|
|
# Set this for production deployments
|
|
# HERMES_PASSWORD=
|
|
|
|
# Allow access from non-localhost addresses
|
|
# Comma-separated list of hostnames/IPs
|
|
# Examples:
|
|
# - Tailscale: my-server.tail1234.ts.net
|
|
# - LAN: 192.168.1.50
|
|
# HERMES_ALLOWED_HOSTS=
|
|
|