paisa/Makefile

9 lines
271 B
Makefile
Raw Normal View History

2022-04-13 13:05:46 -04:00
.PHONY: docs
2022-04-02 03:31:29 -04:00
serve:
2022-04-09 12:45:05 -04:00
./node_modules/.bin/nodemon --signal SIGTERM --watch '.' --ext go --exec 'go run . serve || exit 1'
2022-04-02 03:31:29 -04:00
watch:
./node_modules/.bin/esbuild web/src/index.ts --bundle --watch --sourcemap --outfile=web/static/dist.js
2022-04-13 13:05:46 -04:00
docs:
cd docs && mdbook serve --open