mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 01:42:32 +00:00
14 lines
262 B
Makefile
14 lines
262 B
Makefile
default:
|
|
@just --list
|
|
|
|
# build and rsync to production
|
|
deploy: build
|
|
rsync -avzhP --delete public/ hardforze.binarytrance.com:infrastructure/volumes/www/wezm.net/v2/
|
|
|
|
# build with zola
|
|
build:
|
|
zola build
|
|
|
|
# start zola dev server
|
|
serve:
|
|
zola serve
|