goipam/Makefile

20 lines
257 B
Makefile
Raw Normal View History

2024-02-22 10:18:59 +01:00
release: deps templ
GIN_MODE=release go build -v -x -buildvcs=true .
dev: templ
go build .
./webframework -p=false
clean:
rm -f webframework
rm -f config.yaml
rm -f db.sqlite
templ:
templ fmt .
templ generate
deps:
go mod download
go mod tidy