-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
68 lines (49 loc) · 2.01 KB
/
Makefile
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
# GRP-GNU-AGPL******************************************************************
# File: Makefile
# Copyright (C) 2021 Team Georepublic <info@georepublic.de>
# Developer(s):
# Copyright (C) 2021 Ashish Kumar <ashishkr23438@gmail.com>
# -----
# This file is part of pg_scheduleserv.
# pg_scheduleserv is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# pg_scheduleserv is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with pg_scheduleserv. If not, see <https://www.gnu.org/licenses/>.
# ******************************************************************GRP-GNU-AGPL
app.env:
cp app.env.example app.env
include app.env
migrateup:
migrate -path migrations -database postgres://$(POSTGRES_USER):$(POSTGRES_PASSWORD)@$(POSTGRES_HOST):$(POSTGRES_PORT)/$(POSTGRES_DB) -verbose up
.PHONY: migrateup
migratedown:
migrate -path migrations -database postgres://$(POSTGRES_USER):$(POSTGRES_PASSWORD)@$(POSTGRES_HOST):$(POSTGRES_PORT)/$(POSTGRES_DB) -verbose down
.PHONY: migratedown
doc:
swag init
swagger generate markdown -f docs/swagger.json --output=docs/api.md
.PHONY: doc
check-mod:
go mod tidy
git diff --exit-code go.mod
.PHONY: check-mod
lint:
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
golangci-lint run
.PHONY: lint
test:
go install gotest.tools/gotestsum@latest
gotestsum --format=testname -- -count=1 -timeout=20m -coverpkg=./... -coverprofile=coverage.out ./...
.PHONY: test
test-coverage:
go tool cover -func=./coverage.out
.PHONY: test-coverage
html-coverage:
go tool cover -html=coverage.out -o coverage.html
.PHONY: html-coverage