From 48ec766f7f676f234765196923361f30e350c819 Mon Sep 17 00:00:00 2001 From: mo8it Date: Tue, 30 May 2023 14:17:20 +0200 Subject: [PATCH] Add justfile --- justfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..e133176 --- /dev/null +++ b/justfile @@ -0,0 +1,8 @@ +zola_bin := "flatpak run org.getzola.zola" +tailwind_bin := "npx tailwindcss" + +zola: + {{zola_bin}} serve --open --drafts + +tailwind: + {{tailwind_bin}} -mw -i input.css -o static/main.css