- 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`.
20 lines
No EOL
473 B
Makefile
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"
|