first commit

This commit is contained in:
2026-06-27 09:32:54 -03:00
commit 029adfafc3
23 changed files with 1205 additions and 0 deletions

14
scripts/run_poc.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
cp -n .env.example .env || true
mkdir -p storage
echo '1) Subindo Postgres + LiteLLM Proxy...'
docker compose up -d
echo '2) Registrando virtual keys por API consumidora...'
python src/create_litellm_keys.py
echo '3) Subindo simulador de APIs na porta 8080...'
uvicorn src.api_service:app --host 0.0.0.0 --port 8080