bacpilot-backend / scripts /check_backend.sh
debpc
Initial BacPilot backend MVP pipeline
5ffcd9d
Raw
History Blame Contribute Delete
349 Bytes
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
echo "== Compile Python =="
python -m compileall app
echo ""
echo "== Tests =="
python -m pytest -q
echo ""
echo "== Health check =="
curl -s http://127.0.0.1:8000/api/v1/health
echo ""
echo ""
echo "== Runtime config =="
curl -s http://127.0.0.1:8000/api/v1/runtime-config
echo ""