11 lines
176 B
Makefile
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
|