website/Makefile

12 lines
176 B
Makefile
Raw Normal View History

build:
2024-04-06 00:52:46 +02:00
zola build
serve:
2024-04-06 00:52:46 +02:00
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