-
Notifications
You must be signed in to change notification settings - Fork 1
/
Taskfile.yaml
101 lines (91 loc) · 2.45 KB
/
Taskfile.yaml
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
version: 3
# タスク定義の順番
#
# 1.
# desc
#
# 2.
# internal
# dir
# silent
#
# 3.
# vars
# status / sources / generates / methods / preconditions
# deps
#
# 4.
# cmds
tasks:
check-binary:
desc: 指定されたバイナリがインストールされているか確認
internal: true
silent: true
cmds:
- |
if ! (type {{.BINARY}} >/dev/null 2>&1); then
echo "下記公式ドキュメントを参考に、{{.BINARY}}をインストールした後、もう一度実行してください"
echo {{.INSTALL_DOC}}
exit 1
fi
init:
desc: ワークスペースを初期化
cmds:
- cp .vscode/settings-sample.json .vscode/settings.json
- cp backend/.vscode/settings-sample.json backend/.vscode/settings.json
init-buf:
desc: bufの初期化
internal: true
deps:
- task: check-binary
vars:
BINARY: buf
INSTALL_DOC: https://buf.build/docs/installation
init-oapi:
desc: OpenAPI Generatorの初期化
internal: true
deps:
- task: check-binary
vars:
BINARY: go
INSTALL_DOC: https://go.dev/doc/install
cmds:
- go install github.com/oapi-codegen/oapi-codegen/v2/cmd/[email protected]
generate:
desc: 自動生成ファイルをすべて生成
cmds:
- rm -rf backend/internal/proto
- task: generate-buf
- task: generate-oapi
generate-buf:
desc: Protobuf & Connectの自動生成ファイルを生成
internal: true
dir: proto
deps:
- init-buf
cmds:
- buf generate --template buf.gen-backend.yaml
generate-oapi:
desc: OpenAPIの自動生成ファイルを生成
internal: true
dir: proto
deps:
- init-oapi
cmds:
- for: ["admin", "contestant"]
cmd: |-
mkdir -p ../backend/internal/proto/{{ .ITEM }}/v1/v1oapi
oapi-codegen -package v1oapi -generate chi-server {{ .ITEM }}/v1/file.yaml \
> ../backend/internal/proto/{{ .ITEM }}/v1/v1oapi/file-server.oapi.go
oapi-codegen -package v1oapi -generate client {{ .ITEM }}/v1/file.yaml \
> ../backend/internal/proto/{{ .ITEM }}/v1/v1oapi/file-client.oapi.go
up:
desc: ローカル開発環境を立ち上げる
dir: dev/docker
cmds:
- docker compose up --build -d
down:
desc: ローカル開発環境を終了する
dir: dev/docker
cmds:
- docker compose down