20 lines
213 B
Makefile
20 lines
213 B
Makefile
|
|
||
|
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
|
||
|
|
||
|
|