paisa/Makefile
Anantha Kumaran a5dad97218 embed js file
2022-04-20 14:43:30 +05:30

12 lines
324 B
Makefile

.PHONY: docs
serve:
./node_modules/.bin/nodemon --signal SIGTERM --watch '.' --ext go --exec 'go run . serve || exit 1'
watch:
./node_modules/.bin/esbuild web/src/index.ts --bundle --watch --sourcemap --outfile=web/static/dist.js
docs:
cd docs && mdbook serve --open
publish:
nix-shell --run 'cd docs && mdbook build'