20 lines
397 B
Makefile
20 lines
397 B
Makefile
default: project-name
|
|
@just --list
|
|
|
|
project-name:
|
|
@echo "iiogama.0x212.com Website"
|
|
|
|
build:
|
|
mkdir -p _output
|
|
sh ./build.sh > _output/index.xml
|
|
xsltproc _output/index.xml > _output/blog/index.html
|
|
|
|
serve:
|
|
python3 -m http.server --directory _output/
|
|
|
|
deploy:
|
|
rsync -avz ./_output/ cloudron:/home/yellowtent/appsdata/d2dbdf79-65a0-4a90-a38a-6ff71f4d3e26/data/public/
|
|
|
|
clean:
|
|
rm -r _output/*
|