Add simple deploy script

This commit is contained in:
Jared Miller 2025-12-25 09:43:12 -05:00
parent 34cb308f9f
commit b6291e8202
No known key found for this signature in database

8
justfile Normal file
View file

@ -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"