-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
150 lines (128 loc) · 3.9 KB
/
Taskfile.yml
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# Database Gateway provides access to servers with ACL for safe and restricted database interactions.
# Copyright (C) 2024 Kirill Zhuravlev
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
version: "3"
vars:
PROJECT_NAME: database-gateway
DEPS_COMPOSE_FILE: ./.cicd/local/docker-compose.yaml
DOCKER_IMAGE_NAME: database-gateway
GO_ENTRYPOINT: ./cmd/gateway
GIT_TAG:
sh: "gt t l -f tag"
tasks:
run:
cmds:
- go run {{ .GO_ENTRYPOINT }} run
deps:run:
desc: Run all deps
cmds:
- docker compose -p {{ .PROJECT_NAME }} -f {{ .DEPS_COMPOSE_FILE }} up -d
deps:logs:
desc: Show all deps logs
cmds:
- docker compose -p {{ .PROJECT_NAME }} -f {{ .DEPS_COMPOSE_FILE }} logs -f
deps:stop:
desc: Stop all deps
cmds:
- docker compose -p {{ .PROJECT_NAME }} -f {{ .DEPS_COMPOSE_FILE }} stop
deps:drop:
desc: Stop all deps, remove volumes and other resources
cmds:
- docker compose -p {{ .PROJECT_NAME }} -f {{ .DEPS_COMPOSE_FILE }} down -v -t 0
- docker volume list | grep {{ .PROJECT_NAME }} | awk '{print $2}' | xargs docker volume rm $1
tools:install:
cmds:
- echo '>>> Run install tools'
- toolset sync
lint:
desc: Run static analysis
cmds:
- echo '>>> Run lint'
- toolset run golangci-lint run --fix
fmt:
desc: Safe formatting codebase
cmds:
- echo ">>> Run Code Formatter"
- go fmt $(go list ./...)
- toolset run gofumpt -l -w .
- toolset run goimports -d -w $(find . -type f -name '*.go' -not -path './.cicd/*')
migrations:new:
desc: Create new migration
cmds:
- go run {{ .GO_ENTRYPOINT }} migrate-new
migrations:up:
desc: Up all migrations
cmds:
- go run {{ .GO_ENTRYPOINT }} migrate-up
ci:lint:
desc: Run linter in CI tool
cmds:
- task: tools:install
- echo ">>> Run lint"
- toolset run golangci-lint run
generate:
desc: Generate code
cmds:
- task: "generate:go"
- task: "generate:tailwind"
- task: "generate:templ"
- task: "generate:jet"
- task: "generate:license"
- task: "fmt"
generate:jet:
desc: Generate jet models
cmds:
- echo ">>> Jet generate"
- go run {{ .GO_ENTRYPOINT }} jet-generate
- rm -rf ./internal/storage/jetgen/{table,model}
- mv ./internal/storage/jetgen/local__dbgw/public/* ./internal/storage/jetgen/
- rm -rf ./internal/storage/jetgen/local__dbgw
generate:license:
cmds:
- toolset run addlicense -f LICENSE_gplv3_header.txt .
generate:tailwind:
dir: './internal/facade'
cmds:
- npx tailwindcss -i ./static/input.css -o ./static/output.css
generate:go:
desc: Generate go
cmds:
- echo ">>> Go generate ./..."
- go generate ./...
generate:templ:
desc: Generate templ
dir: './internal/facade/templates'
cmds:
- echo ">>> Templ"
- toolset run templ generate
check:
desc: Run all project checks
cmds:
- task: "tools:install"
- task: "generate"
- task: "fmt"
- task: "lint"
- task: "test"
test:
cmds:
- go test ./...
docker:build:
cmds:
- echo ">>> Docker build"
- |
docker buildx build \
--platform linux/amd64 \
-t {{ .DOCKER_IMAGE_NAME }}:{{.GIT_TAG}} \
-f Dockerfile .