-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTaskfile.yml
More file actions
275 lines (229 loc) · 5.49 KB
/
Taskfile.yml
File metadata and controls
275 lines (229 loc) · 5.49 KB
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
version: "3"
################################################################################################
#
# ref:
# - https://taskfile.dev/#/usage
#
################################################################################################
#
# sub namespace: https://taskfile.dev/#/usage?id=including-other-taskfiles
#
includes:
# os:
# taskfile: ./taskfile/Taskfile_{{OS}}.yml
# dir: ./taskfile/
#
# https://taskfile.dev/usage/#os-specific-taskfiles
# - 跨平台, 会根据当前操作系统, 自动调用
#
os: ./taskfile/_os/Taskfile_{{OS}}.yml
x:
taskfile: .task/config/ # by rsync
dir: .
optional: true
x2:
taskfile: .task/sre/ # by git clone
dir: .
optional: true
python:
aliases: ["py"]
taskfile: ./taskfile/python/
optional: true
# typescript / javascript / nodejs
js:
aliases: ["ts", "node", "nodejs"]
taskfile: ./taskfile/js/
dir: ./taskfile/js/
optional: true
flutter:
aliases: ["fl", "dart"]
taskfile: ./taskfile/flutter/
dir: ./taskfile/flutter/
optional: true
go:
aliases: ["golang"]
taskfile: ./taskfile/go/
dir: ./taskfile/go/
optional: true
rust:
aliases: ["rs"]
taskfile: ./taskfile/rust/
dir: ./taskfile/rust/
optional: true
zig:
taskfile: ./taskfile/zig/
dir: ./taskfile/zig/
optional: true
infra: # 常用中间件
taskfile: ./taskfile/_infra/
optional: true
tools:
taskfile: ./taskfile/tools/
dir: ./taskfile/tools/
optional: true
rsync:
taskfile: ./taskfile/rsync/
dir: ./taskfile/rsync/
optional: true
git:
taskfile: ./taskfile/git/
dir: ./taskfile/git/
optional: true
docker:
taskfile: ./taskfile/docker/
dir: ./taskfile/docker/
optional: true
dockerfile:
aliases: ["df", "dockerfiles"]
taskfile: ./dockerfile/
dir: ./dockerfile/
optional: true
compose:
aliases: ["dc", "docker-compose"]
taskfile: ./docker-compose/local/
dir: ./docker-compose/local/
optional: true
pulumi:
aliases: ["pul"]
taskfile: ./pulumi/
dir: ./pulumi/
optional: true
k3s:
taskfile: ./k3s/
dir: ./k3s/
optional: true
packages:
aliases: ["p", "pkg"]
taskfile: ./packages/
dir: ./packages/
optional: true
################################################################################################
#
# global vars: https://taskfile.dev/#/usage?id=variables
#
vars:
VAR1: "some-var"
#
# global env: https://taskfile.dev/#/usage?id=environment-variables
#
env:
ENV1: testing-env
# env file:
#dotenv:
# - .env
################################################################################################
# task groups:
tasks:
# by rsync
rsync:
aliases: ["mirror", "mr"]
cmds:
- mkdir -p .task/
- |
rsync \
--exclude=".git*" \
--exclude=".venv" \
--exclude=".task" \
--exclude=".github" \
--exclude=".vscode" \
--exclude="docs" \
--exclude="site" \
--exclude="packages" \
--exclude="tmp" \
--exclude="*.md" \
--exclude=".env*" \
--exclude="init.*" \
--include="*.yml" \
-avh \
--progress \
--no-perms \
--delete-before \
--delete \
. ./.task/config
dir: .
# by git clone, with `--depth=1`: 只克隆最新的一个 commit
dl:
aliases: ["clone"]
cmds:
- mkdir -p .task/
- |
git clone --depth=1 \
https://github.com/better-sre/config.git \
./.task/sre
ignore_error: true
################################################################################
use:
cmds:
- echo "setup user global taskfile root dir >> {{.TASK_ROOT_DIR}}"
- mkdir -p {{.TASK_ROOT_DIR}}
- echo "current dir >> $(pwd)"
- ln -sf $(pwd)/ {{.TASK_ROOT_DIR}} # link dir:
- ls -al {{.TASK_ROOT_DIR}}
- open {{.TASK_ROOT_DIR}}
vars:
TASK_ROOT_DIR: "~/.task/local/"
ignore_error: true
################################################################################
#
# 验证 nats 部署正常:
#
test:nats:sub:
cmds:
- go run sub/main.go
dir: ./script/nats/
test:nats:pub:
cmds:
- go run pub/main.go
dir: ./script/nats/
################################################################################
uv:
cmds:
- uv {{.CLI_ARGS}}
sync:
cmds:
- task: x:py:sync
docs:
cmds:
- task: x:py:docs
docs:deploy:
aliases: ["dd", "docs:d"]
cmds:
- task: x:py:docs:deploy
################################################################################
pull:
aliases: ["pl"]
cmds:
- git config pull.rebase false
- git pull origin main
fetch:
aliases: ["f"]
cmds:
- git fetch
- git rebase
- git merge origin/main
quick:
aliases: ["q"]
cmds:
- task: cc
- task: push
# usage: task rc -- 2
cf:
aliases: ["reset:commit", "rc"]
cmds:
- git reset --soft HEAD~{{.CLI_ARGS}}
- task: c
cc:
cmds:
- task: commit
- task: commit
commit:
aliases: ["c"]
cmds:
- git add .
- git status
- git commit -m "update" --no-verify
ignore_error: true
push:
cmds:
- git push origin main --tags
- repo_url=`git remote -v | grep push | awk -F ":" '{print $2}' | awk -F ".git" '{print "https://github.com/"$1}'`; open $repo_url