|
|
|
@ -53,6 +53,7 @@ help:
|
|
|
|
@echo " make dev-auth - Start core infrastructure + Zitadel auth"
|
|
|
|
@echo " make dev-auth - Start core infrastructure + Zitadel auth"
|
|
|
|
@echo " make dev-full-auth - Start core infrastructure + observability + Zitadel auth"
|
|
|
|
@echo " make dev-full-auth - Start core infrastructure + observability + Zitadel auth"
|
|
|
|
@echo " make dev-gateway - Start core infrastructure + gateway ingress (NGINX + gateway service)"
|
|
|
|
@echo " make dev-gateway - Start core infrastructure + gateway ingress (NGINX + gateway service)"
|
|
|
|
|
|
|
|
@echo " make dev-all - Start full development environment (core infrastructure + observability + Zitadel auth + gateway ingress + frontend)"
|
|
|
|
@echo " make stop - Stop all containers"
|
|
|
|
@echo " make stop - Stop all containers"
|
|
|
|
@echo " make clean - Stop containers and remove volumes"
|
|
|
|
@echo " make clean - Stop containers and remove volumes"
|
|
|
|
@echo " make infra-build-images - Build all production service images via compose"
|
|
|
|
@echo " make infra-build-images - Build all production service images via compose"
|
|
|
|
@ -134,6 +135,9 @@ dev-gateway: dev
|
|
|
|
@echo "Gateway ingress ready:"
|
|
|
|
@echo "Gateway ingress ready:"
|
|
|
|
@echo " Public entrypoint (NGINX): http://localhost:$(GATEWAY_PORT)"
|
|
|
|
@echo " Public entrypoint (NGINX): http://localhost:$(GATEWAY_PORT)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dev-all: dev-full-auth dev-gateway frontend-dev
|
|
|
|
|
|
|
|
@echo "Open http://localhost:5173 to access the application frontend (via gateway ingress)."
|
|
|
|
|
|
|
|
|
|
|
|
stop:
|
|
|
|
stop:
|
|
|
|
@echo "Stopping all containers..."
|
|
|
|
@echo "Stopping all containers..."
|
|
|
|
@$(COMPOSE_CMD) down
|
|
|
|
@$(COMPOSE_CMD) down
|
|
|
|
|