1
0
Fork 0
interesting/justfile

16 lines
237 B
Plaintext

# list all recipes
default:
just --list --unsorted
# build html
build:
cp src/interesting.txt dist && sh bin/build.sh
# build and upload
all:
just build && just up
# upload
up:
rsync -zaP dist/* tilde:public_html/interesting/