1
0
Fork 0
mirror of https://github.com/s-frick/effigenix.git synced 2026-03-28 10:09:35 +01:00

feat(production): Rezept aktivieren (#29)

Rezepte können vom DRAFT- in den ACTIVE-Status überführt werden.
Voraussetzung: mindestens eine Zutat muss vorhanden sein.
Inkl. Use Case, REST-Endpoint POST /recipes/{id}/activate,
Domain-Tests und Error Handling.
This commit is contained in:
Sebastian Frick 2026-02-19 21:24:39 +01:00
parent cf93b847e5
commit a132211a74
11 changed files with 229 additions and 3 deletions

View file

@ -34,7 +34,7 @@ if curl -sf "$API_DOCS_URL" -o /dev/null 2>/dev/null; then
echo "✓ Backend läuft bereits"
else
echo "→ Backend wird gestartet..."
mvn -f "$BACKEND_DIR/pom.xml" spring-boot:run -q &
mvn -f "$BACKEND_DIR/pom.xml" spring-boot:run -Pno-db -q &
BACKEND_PID=$!
wait_for_backend
fi