8 lines
222 B
Makefile
8 lines
222 B
Makefile
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"
|