cli/Makefile
Snider 90009eccd5 Add pre-commit task, CLI enhancements, and ATS updates
- Added `pre-commit` task in Makefile.
- Enhanced CLI with banner display and stricter file selection validation.
- Expanded App Transport Security settings and updated permissions in `Info.dev.plist`.
2025-10-27 05:41:11 +00:00

20 lines
No EOL
473 B
Makefile

.PHONY: all dev prod-docs development-docs
all:
(cd cmd/core-app && task build)
.ONESHELL:
dev:
(cd cmd/core-app && task dev)
pre-commit:
coderabbit review --prompt-only
development-docs:
@echo "Running development documentation Website..."
@(cd pkg/core/docs && mkdocs serve -w src)
prod-docs:
@echo "Generating documentation tp Repo Root..."
@(cd pkg/core/docs && mkdocs build -d public && cp -r src public)
@echo "Documentation generated at docs/index.html"