blob: 86ef5e38063fa434cce0828f85e46aff37c3cc9a (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
SHELL := bash
.SHELLFLAGS := -eu -o pipefail -c
.ONESHELL:
.DELETE_ON_ERROR:
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
.DEFAULT_GOAL := help
OUTDIR := "."
CONTAINER_REGISTRY ?= localhost
CONTAINER_TAG ?= latest
DEPS := Dockerfile GNUmakefile go.mod go.sum index.html main.go ods.txt
##### Utils ####################################################################
.PHONY: confirm
confirm:
@echo -n 'Are you sure? [y/N] ' && read ans && [ $${ans:-N} = y ]
.PHONY: git-crypt-unlocked
git-crypt-unlocked:
@git config --local --get filter.git-crypt.smudge >/dev/null || FAIL=1
if [[ "$${FAIL:-0}" -gt 0 ]]; then
echo "Please unlock git-crypt before continuing!"
exit 1
fi
.PHONY: help
help:
@grep -E '^[a-zA-Z\/_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' \
| sort
.PHONY: no-dirty
no-dirty:
git diff --exit-code
##### Quality ##################################################################
.PHONY: check
check: ## run all code checks
go mod verify
go vet ./...
.PHONY: tidy
tidy: ## tidy up the code
go fmt ./...
go mod tidy -v
##### Development ##############################################################
.PHONY: build
build: ods ## build the code
.PHONY: clean
clean: ## clean the code
rm -f $(OUTDIR)/ods
ods: git-crypt-unlocked $(DEPS)
CGO_ENABLED=0 go build -o $(OUTDIR)/ods ./
.PHONY: git-crypt-unlocked ## run
run: ## run the code
go run ./
##### Containers ###############################################################
.PHONY: container-build
container-build: git-crypt-unlocked ## build the container image
@printf $(DEPS) | xargs shasum >checksums
podman build \
-v $$PWD:/usr/src/app \
-t $(CONTAINER_REGISTRY)/ods:$(CONTAINER_TAG) \
.
.PHONY: container-push
container-push: ## push the container image to the container registry
podman push \
$(CONTAINER_REGISTRY)/ods:$(CONTAINER_TAG)
.PHONY: container-run
container-run: ## run the code inside podman
podman run --rm -ti \
-p 8090:8090 \
$(CONTAINER_REGISTRY)/ods:$(CONTAINER_TAG)
##### Operations ###############################################################
.PHONY: push
push: tidy no-dirty check ## push changes to git remote
git push git master
.PHONY: deploy
deploy: ods ## deploy changes to the production server
rsync $(OUTDIR)/ods root@ods.adyxax.org:/srv/ods/
ssh root@ods.adyxax.org "systemctl restart ods"
|