Spaces:
Running
Running
File size: 734 Bytes
857a91b | 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 | # Matrix Runtime environment file (systemd EnvironmentFile).
# Edit before enabling the service: sudo systemctl enable --now matrix-runtime
# Runtime mode: cloud-worker | customer-agent | hf-space | local-dev
MATRIX_RUNTIME_MODE=customer-agent
# HTTP port
MATRIX_RUNTIME_PORT=8080
# Limits
MATRIX_RUNTIME_MAX_TTL_SECONDS=600
MATRIX_RUNTIME_MAX_CONCURRENT_JOBS=5
# Protect the API with a bearer token in production (required for non-health endpoints).
# MATRIX_RUNTIME_API_TOKEN=change-me
# Hybrid cloud (customer-agent)
MATRIX_CLOUD_URL=https://cloud.matrixhub.io
# MATRIX_RUNTIME_JOIN_TOKEN=mxrt_xxxxx
# MATRIX_RUNTIME_ID=
# MATRIX_RUNTIME_WORKSPACE=
# Hugging Face token for gated/private model inspection
# HF_TOKEN=hf_xxxxx
|