From b6291e82026be21833f4b8a67a46e65836c11bc1 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Thu, 25 Dec 2025 09:43:12 -0500 Subject: [PATCH] Add simple deploy script --- justfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..80b85ff --- /dev/null +++ b/justfile @@ -0,0 +1,8 @@ +deploy_dir := "/var/www/html/dungeon.red/fantasyland" + +default: deploy + +deploy: + mkdir -p {{deploy_dir}} + bunx inline-source-cli index.html {{deploy_dir}}/index.html + @echo "deployed to {{deploy_dir}}/index.html"