From 0aa07251f7a020a215293975b15d7c03f4b7c429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Schiavoni?= Date: Wed, 15 Jul 2026 13:55:56 -0300 Subject: [PATCH] Added Makefile --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e3b69e7 --- /dev/null +++ b/Makefile @@ -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