blob: 6075cdcce84f62c62111ad65e1f970d004414bbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
all:
@echo "make run # will build and run the daemon here"
@echo "make debian # will build a debian package"
run:
git pull
echo "build it!"
GO111MODULE=off go build -v -x
./go.wit.com
# su -c "setcap 'cap_net_bind_service=+ep' go.wit.com"
goimports:
goimports -w *.go
redomod:
rm -f go.*
GO111MODULE= go mod init
GO111MODULE= go mod tidy
# makes a .deb package
debian:
go-deb --no-gui --repo go.wit.com/apps/go.wit.com
|