mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-10 23:51:33 +00:00
.github
assets
content
data
layouts
static
.gitignore
.hugo_build.lock
CODE_OF_CONDUCT.md
LICENSE.txt
Makefile
README.md
config.toml
screenshot.png
8 lines
307 B
Makefile
8 lines
307 B
Makefile
.DEFAULT_GOAL := serve
|
|
|
|
help: ## Show all Makefile targets
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
|
|
serve: ## serve
|
|
hugo-obsidian -input=content -output=assets/indices -index -root=. && hugo server --enableGitInfo
|