website/Makefile
2024-04-06 00:52:49 +02:00

11 lines
176 B
Makefile

build:
zola build
serve:
zola serve --interface 0.0.0.0 --port 1111 --base-url localhost
publish: build
cp -r public/* /usr/share/nginx/snamellit/
clean:
rm -rf public