Skip to content

Commit 7b29553

Browse files
committed
Add docs make target
1 parent 96545cd commit 7b29553

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ PROJECT_ROOT=.
1616
########################################################
1717

1818
### Help
19-
.PHONY: help
19+
.PHONY: help docs
2020
help: ## Show this help message
2121
@echo "$(BLUE)Available Make Targets$(RESET)"
2222
@echo ""
@@ -117,6 +117,11 @@ all: setup setup_githooks ## Setup and run main application
117117
@$(PYTHON) main.py
118118
@echo "$(GREEN)✅ Main application run completed.$(RESET)"
119119

120+
docs: ## Run docs with bun
121+
@echo "$(GREEN)📚Running docs...$(RESET)"
122+
@cd docs && bun run dev
123+
@echo "$(GREEN)✅ Docs run completed.$(RESET)"
124+
120125

121126
########################################################
122127
# Run Tests
@@ -189,4 +194,4 @@ ci: ruff vulture ty ## Run all CI checks (ruff, vulture, ty)
189194
requirements:
190195
@echo "$(YELLOW)🔍Checking requirements...$(RESET)"
191196
@cp requirements-dev.lock requirements.txt
192-
@echo "$(GREEN)✅Requirements checked.$(RESET)"
197+
@echo "$(GREEN)✅Requirements checked.$(RESET)"

0 commit comments

Comments
 (0)