Makefile (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13
.PHONY: schema-generate db-schema: if [ -f schema/schema.sql ]; then rm schema/schema.sql; fi; sqlite3 watchman.db .schema > schema/schema.sql; run-server: go mod tidy go run main.go run-frontend: cd frontend && git pull origin master bun run dev