hermitcollective-nix-server/sites/blog.hermitcollective.net/blog/themes/hugo-simple/justfile
Jan van der Weide 6871d333f6 REPO MIGRATED
2025-02-11 14:15:02 +01:00

31 lines
622 B
Makefile

set ignore-comments
alias s := server
alias serve := server
alias b := build
default:
just --list
server:
hugo server -D --source ./exampleSite --themesDir ../..
build:
hugo --minify --gc --destination ../public --source ./exampleSite --themesDir ../.. --baseURL https://maolonglong.github.io/hugo-simple/
fmt:
# TODO: https://github.com/numtide/treefmt-nix/issues/112
nix fmt
bun run fmt
check:
# TODO: https://github.com/numtide/treefmt-nix/issues/112
nix flake check
bun run check
update-simplecss:
curl -fSL https://cdn.simplecss.org/simple.css -o ./assets/simple.css
clean:
rm -r public