rivet: a simple static site generator
Go to file
2020-09-10 16:38:47 +02:00
.gitignore corrected usage information 2020-09-10 16:23:58 +02:00
LICENSE first commit 2020-09-09 00:37:08 +02:00
makefile correct version in makefile 2020-09-10 16:22:01 +02:00
README.md better readme, fixed example 2020-09-10 01:01:12 +02:00
rivet.1 added man page 2020-09-10 16:21:23 +02:00
rivet.sh clean destination directory before build 2020-09-10 16:38:47 +02:00

Rivet: static site genetator

River takes a source directory containing a the file sources and produces an output directory that can actually be uploaded to a server.

Dependencies

Examples

Generate site from directory to cool_site

$ rivet -o cool-site/ secret-sauce/ cool-url

The makefile I use to generate my site

SRCDIR = src
DESTDIR = dst
DOMAIN = alemauri.eu

all:
	rivet -o ${DESTDIR} ${SRCDIR} ${DOMAIN}

test: all
	xdg-open ${DESTDIR}/index.html

install: all
	rsync -vmruLz --delete ${DESTDIR}/ www@${DOMAIN}:/www/

clean:
	rm -rf ${DESTDIR}

Similar tools