mirror of
https://github.com/hoshikawa2/compass_backoffice.git
synced 2026-07-09 13:54:20 +00:00
30 lines
977 B
Plaintext
30 lines
977 B
Plaintext
# ==========================================================
|
|
# Backoffice MCP Server
|
|
# Copie para .env.backoffice_mcp ou injete via Docker/K8s Secret.
|
|
# ==========================================================
|
|
|
|
BACKOFFICE_MCP_HOST=0.0.0.0
|
|
BACKOFFICE_MCP_PORT=8010
|
|
BACKOFFICE_MCP_LOG_LEVEL=info
|
|
|
|
# true = usa dados simulados em memória.
|
|
# false = usa BACKOFFICE_MCP_BACKEND_TYPE para chamar backend real.
|
|
BACKOFFICE_MCP_USE_MOCK=true
|
|
BACKOFFICE_MCP_BACKEND_TYPE=mock
|
|
|
|
# REST backend opcional
|
|
BACKOFFICE_MCP_REST_BASE_URL=http://localhost:8080/backoffice
|
|
BACKOFFICE_MCP_REST_TIMEOUT_SECONDS=20
|
|
BACKOFFICE_MCP_REST_AUTH_HEADER=Authorization
|
|
BACKOFFICE_MCP_REST_API_KEY=
|
|
|
|
# Oracle backend opcional
|
|
BACKOFFICE_MCP_ORACLE_USER=
|
|
BACKOFFICE_MCP_ORACLE_PASSWORD=
|
|
BACKOFFICE_MCP_ORACLE_DSN=
|
|
BACKOFFICE_MCP_ORACLE_WALLET_LOCATION=
|
|
BACKOFFICE_MCP_ORACLE_WALLET_PASSWORD=
|
|
|
|
# Se true, erro no backend real vira resposta controlada da tool.
|
|
BACKOFFICE_MCP_FAIL_OPEN_ON_BACKEND_ERROR=false
|