Files
Servo/Makefile
Eric Bower c234cc7f7c docs: update styles (#329)
* chore: go tidy

* style: docs

* style: tweak
2025-01-08 14:00:54 -05:00

22 lines
385 B
Makefile

clean:
rm -rf ./docs/public/*
echo "" > ./docs/public/.gitkeep
.PHONY: clean
ssg:
go run ./docs/cmd
cp ./docs/static/* ./docs/public
.PHONY: ssg
docs: ssg
rsync -vr ./docs/public/ pgs.sh:/sish-local
.PHONY: docs
docs-prod: ssg
rsync -vr ./docs/public/ pgs.sh:/sish-prod
.PHONY: docs-prod
dev:
go run main.go --http-address localhost:3000 --domain testing.ssi.sh
.PHONY: dev