first commit

This commit is contained in:
2026-06-13 08:23:21 -03:00
commit 89c23fb0ed
439 changed files with 32801 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
if [ -f ".env" ]; then
set -a
source .env
set +a
fi
if [ -f ".env.backoffice_mcp" ]; then
set -a
source .env.backoffice_mcp
set +a
fi
HOST="${BACKOFFICE_MCP_HOST:-0.0.0.0}"
PORT="${BACKOFFICE_MCP_PORT:-8010}"
LOG_LEVEL="${BACKOFFICE_MCP_LOG_LEVEL:-info}"
uvicorn mcp_servers.backoffice_mcp_server.main:app --host "$HOST" --port "$PORT" --log-level "$LOG_LEVEL"