first commit

This commit is contained in:
2026-06-20 14:35:58 -03:00
parent 67ca651561
commit 4df0f39834

View File

@@ -4,12 +4,12 @@ ROOT="$(cd "$(dirname "$0")/.." && pwd)"
python -m venv "$ROOT/.venv" python -m venv "$ROOT/.venv"
source "$ROOT/.venv/bin/activate" source "$ROOT/.venv/bin/activate"
pip install -r "$ROOT/mcp_servers/telecom_mcp_server/requirements.txt" pip install -r "$ROOT/mcp/servers/telecom_mcp_server/requirements.txt"
pip install -r "$ROOT/mcp_servers/retail_mcp_server/requirements.txt" pip install -r "$ROOT/mcp/servers/retail_mcp_server/requirements.txt"
uvicorn --app-dir "$ROOT/mcp_servers/telecom_mcp_server" main:app --host 0.0.0.0 --port 8100 & uvicorn --app-dir "$ROOT/mcp/servers/telecom_mcp_server" main:app --host 0.0.0.0 --port 8100 &
PID1=$! PID1=$!
uvicorn --app-dir "$ROOT/mcp_servers/retail_mcp_server" main:app --host 0.0.0.0 --port 8200 & uvicorn --app-dir "$ROOT/mcp/servers/retail_mcp_server" main:app --host 0.0.0.0 --port 8200 &
PID2=$! PID2=$!
echo "Telecom MCP em http://localhost:8100" echo "Telecom MCP em http://localhost:8100"