Files
natiris/start_only_api.sh

11 lines
298 B
Bash
Executable File

#!/bin/bash
# Starte nur Core + API (keine TUI)
cd ~/natiris
echo "[1/2] Core initialisieren..."
python3 core/OrchestratorAll.py > /dev/null
echo "[2/2] API starten..."
python3 "runtime/Web chat API (FastAPI)/app.py" &
echo "API läuft auf http://localhost:8000 (mit tmux/screen im Hintergrund)"