chore: interne Host-Adresse durch generischen Hostnamen ersetzt

Ersetzt die private LAN-IP des Jetson durch jetson.local in Doku,
Shell-Skripten, .env.example und Docstrings. Funktional betroffen ist
nur ein os.environ.setdefault-Fallback im Spike; gesetzte Env-Vars
(OLLAMA_BASE_URL, GROBID_URL) haben weiterhin Vorrang. uv.lock bleibt
unveraendert (enthaelt Versionsnummern, keine Adressen).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Tarik Moussa
2026-07-31 00:51:27 +02:00
parent 5aa2f7db40
commit 53c40f6da2
10 changed files with 25 additions and 25 deletions

View File

@@ -2,7 +2,7 @@
# Batch ingest — writes directly to Jetson PostgreSQL via SSH tunnel.
#
# Prerequisites:
# ssh -f -N -L 5433:localhost:5432 alfred@192.168.178.103
# ssh -f -N -L 5433:localhost:5432 alfred@jetson.local
# uv sync (done once)
#
# Usage: bash ingest_all.sh 2>&1 | tee ingest_all.log
@@ -16,7 +16,7 @@ TUNNEL_PORT=5433
# ── 1. Verify SSH tunnel is active ───────────────────────────────────────────
if ! nc -z localhost "$TUNNEL_PORT" 2>/dev/null; then
echo "ERROR: SSH tunnel not active on port $TUNNEL_PORT"
echo "Run: ssh -f -N -L 5433:localhost:5432 alfred@192.168.178.103"
echo "Run: ssh -f -N -L 5433:localhost:5432 alfred@jetson.local"
exit 1
fi
echo "✓ SSH tunnel active on port $TUNNEL_PORT"