Add simple deploy script
This commit is contained in:
parent
34cb308f9f
commit
b6291e8202
1 changed files with 8 additions and 0 deletions
8
justfile
Normal file
8
justfile
Normal 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"
|
||||||
Loading…
Reference in a new issue