-
Notifications
You must be signed in to change notification settings - Fork 1
/
Taskfile.yml
108 lines (78 loc) · 1.7 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
version: '3'
################################################################################################
#
# local dev:
# - run:
# - clean:
#
################################################################################################
#
# global vars: https://taskfile.dev/#/usage?id=variables
#
vars:
VAR1: "some-var"
# global env:
env:
ENV1: testing
# env file:
dotenv:
- .env
################################################################################################
# task groups:
tasks:
default:
cmds:
- task: init
- task: run
install:
cmds:
- brew install go-task/tap/go-task
init:
cmds:
- cp .env.local .env
- task: tidy
tidy:
cmds:
- go mod tidy -v
run-auto:
cmds:
- air -d # auto run
# exec bin:
exec:
cmds:
- ./tmp/main --chainType=${CHAIN_TYPE} --fromFile=${FROM_FILE} --toFile=${TO_FILE} # 环境变量传参
build:
cmds:
- go build -o ./tmp/main ./app/cmd
run:
cmds:
- go run ./app/cmd
#########################################################################
gen:
cmds:
- task: run-auto # auto run
#########################################################################
mkdir:
desc: "create app folder"
cmds:
- mkdir -p {{.FOLDER}}
#########################################################################
stash:
cmds:
- git stash
quick:
cmds:
- task: commit
- task: pull
- task: push
commit:
cmds:
- git add lib/
- git commit -m "update"
push:
cmds:
- git push origin main --tags
pull:
cmds:
- git config pull.rebase false
- git pull