podterminal/Makefile

20 lines
213 B
Makefile
Raw Normal View History

2024-01-27 11:20:40 +01:00
release: deps
CGO_ENABLED=1 go build -v -x -buildvcs=true .
dev:
go build .
./podterminal
clean:
rm -f filegate
# rm -f config.yaml
rm -f db.sqlite
rm -rf storage/
deps:
go mod download
go mod tidy