Radish alpha
r
rad:z371PVmDHdjJucejRoRYJcDEvD5pp
Radicle website including documentation and guides
Radicle
Git
radicle.xyz Makefile
default:
	bundle exec jekyll build $(CONFIG)

serve:
	bundle exec jekyll serve $(CONFIG) --port 3000 --livereload

dependencies:
	gem install jekyll

cloudflare:
	sudo gem install bundler
	bundle config path vendor/bundle
	bundle install
	bundle exec jekyll build $(CONFIG)

svgs:
	scripts/cleanup-svgs.sh assets/images/*.svg

publish: default
	wrangler deploy --name="website"

clean:
	@rm -rfv _site

.PHONY: default publish clean