ifneq (,$(wildcard ./.env))
include .env
export
endif

PORT ?= 8080
HOST ?= 0.0.0.0

.PHONY: ensure-env install run test smoke docker-build llm-up llm-down llm-status

ensure-env:
	@if [ ! -f .env ] && [ -f .env.example ]; then \
		cp .env.example .env; \
		echo "Created .env from .env.example"; \
	fi

install: ensure-env
	python3 -m venv .venv
	. .venv/bin/activate && pip install -U pip && pip install -e .[test]

run: ensure-env
	. .venv/bin/activate && uvicorn app.main:app --host $(HOST) --port $(PORT) --reload

test: ensure-env
	. .venv/bin/activate && pytest tests/

# Echter End-to-End-Test gegen OpenRouter (macht Netz-Aufrufe, kostet wenig).
smoke: ensure-env
	. .venv/bin/activate && python scripts/smoke_e2e.py

docker-build:
	docker build -t voice-assistant-gateway .

# --- Lokales LLM (llama.cpp-Server, zentrale unzensierte KI) -----------------
# Konfig per ENV ueberschreibbar, z. B.:  GPU_DEVICE=2 HOST_PORT=8101 make llm-up
llm-up:
	bash scripts/llm-server/start-llm-server.sh

llm-down:
	bash scripts/llm-server/stop-llm-server.sh

llm-status:
	bash scripts/llm-server/status-llm-server.sh
