From 75bdf92743fefdec5bbc4c60e04acd2345cf432d Mon Sep 17 00:00:00 2001 From: Drew Malzahn Date: Fri, 5 Jun 2026 01:51:21 +0000 Subject: [PATCH] chore: Create Justfile for common tasks --- Justfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Justfile diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..5ef1524 --- /dev/null +++ b/Justfile @@ -0,0 +1,10 @@ +user := "admin" +host := "chimaera.malzahn.lan" +www-root := "/home/admin/caddy/public_html/fabula" + +serve: + python3 -m http.server + +deploy: + scp fabula-ultima-sheet.html {{ user }}@{{ host }}:{{ www-root }}/index.html + scp fabula-ultima-sheet.css {{ user }}@{{ host }}:{{ www-root }}/fabula-ultima-sheet.css