summaryrefslogtreecommitdiff
path: root/Makefile
blob: 5b0506e2899170d588ce73df987f596ea78dae81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
all:
	@echo "make run       # will build and run the daemon here"
	@echo "make debian    # will build a debian package"
	@echo "make restart   # restart the daemon"
	@echo "make enable    # enable daemon on boot"
	@echo "make log       # watch the daemon log"

log:
	@#systemctl status gowebd.service
	@journalctl -f -xeu gowebd.service

enable:
	systemctl enable gowebd.service

restart:
	systemctl stop gowebd.service
	systemctl start gowebd.service

run:
	git pull
	echo "build it!"
	GO111MODULE=off go build -v -x
	./go.wit.com
	# setcap 'cap_net_bind_service=+ep' go.wit.com   # allow the binary to open ports below 1024

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