This commit is contained in:
Elijah McMorris 2025-05-05 00:13:50 -07:00
commit d6006a0227
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
82 changed files with 2862 additions and 0 deletions

13
justfile Normal file
View file

@ -0,0 +1,13 @@
run:
zola serve
update:
nix flake update
docker:
nix build .#packages.x86_64-linux.my-docker
docker load < ./result
docker rm -f my-zola
docker run -d --rm -p 80:80 --name my-zola my-zola:latest
rm -rf result
docker image prune -f