From 5f042407473a8108a62c686e50ef57c5df1e48d2 Mon Sep 17 00:00:00 2001 From: "bert.hausmans" Date: Thu, 16 Apr 2026 22:20:54 +0200 Subject: [PATCH] chore(dev): add make docs target for VitePress dev server --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 040eada7..43d80757 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: help services services-stop api app portal +.PHONY: help services services-stop api app portal docs # Colors GREEN := \033[0;32m @@ -20,6 +20,7 @@ help: @echo " make api Laravel API → http://localhost:8000" @echo " make app Organizer SPA → http://localhost:5174" @echo " make portal Portal SPA → http://localhost:5175" + @echo " make docs VitePress docs → http://localhost:5176" @echo "" @echo " $(YELLOW)Database:$(NC)" @echo " make migrate Run migrations" @@ -56,6 +57,10 @@ portal: @echo "$(GREEN)Starting Portal SPA → http://localhost:5175$(NC)" @cd apps/portal && pnpm dev +docs: + @echo "$(GREEN)Starting VitePress docs → http://localhost:5176$(NC)" + @cd docs && npm run docs:dev + migrate: @cd api && php artisan migrate