bckt 0.7.1

bckt is an opinionated but flexible static site generator for blogs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: build themes dev-themes test

# Build the bckt binaries.
build:
	cargo build --release

# Package every theme under themes/ into target/themes/<name>.zip.
themes:
	./scripts/package-themes.sh

# Package themes and drop the default bckt3.zip next to the debug binary so
# `bckt init` finds it on the search path during local development.
dev-themes: themes
	cargo build
	cp target/themes/bckt3.zip target/debug/bckt3.zip

test:
	cargo test