Added Makefile

This commit is contained in:
fls 2026-07-15 13:55:56 -03:00
parent bfbbfbe59b
commit 0aa07251f7
1 changed files with 18 additions and 0 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
.DEFAULT_GOAL := serve
.PHONY: serve build clean check push
serve: ## Run local development server with live reloading and drafts enabled
bundle exec jekyll serve --livereload --drafts --trace
build: ## Build the production-ready static site
JEKYLL_ENV=production bundle exec jekyll build --trace --destination ~/public_html/exemplo-compmus
clean: ## Remove generated site and Jekyll cache files
bundle exec jekyll clean
check: ## Check the site for configuration or deprecation issuesp
bundle exec jekyll doctor
push:
git push -u origin main