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"