feat: rebuild rss-news backend, admin ui, and legal extraction pipeline

This commit is contained in:
Oliver 2026-02-18 09:46:44 +01:00
parent d65c55d315
commit 2c331d683b
No known key found for this signature in database
43 changed files with 3463 additions and 73 deletions

33
scripts/smoke_backend.sh Executable file
View file

@ -0,0 +1,33 @@
#!/usr/bin/env bash
set -euo pipefail
if [[ -z "${BASE_URL:-}" ]]; then
echo "BASE_URL fehlt (z. B. https://news.vanityontour.de)"
exit 1
fi
if [[ -z "${APP_ADMIN_USERNAME:-}" || -z "${APP_ADMIN_PASSWORD:-}" ]]; then
echo "APP_ADMIN_USERNAME/APP_ADMIN_PASSWORD fehlen"
exit 1
fi
cookie_file="$(mktemp)"
trap 'rm -f "$cookie_file"' EXIT
echo "[1/4] Healthcheck"
curl -fsS "${BASE_URL}/health" | grep -q '"status":"ok"'
echo "[2/4] Login"
curl -fsS -c "$cookie_file" \
-H "Content-Type: application/json" \
-X POST "${BASE_URL}/auth/login" \
-d "{\"username\":\"${APP_ADMIN_USERNAME}\",\"password\":\"${APP_ADMIN_PASSWORD}\"}" \
| grep -q '"ok":true'
echo "[3/4] Protected Endpoint"
curl -fsS -b "$cookie_file" "${BASE_URL}/api/protected" | grep -q '"ok":true'
echo "[4/4] Pipeline Status"
curl -fsS -b "$cookie_file" "${BASE_URL}/api/pipeline/status" | grep -q '"stage":"skeleton+db"'
echo "Smoke test erfolgreich."