-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTaskfile.yaml
233 lines (193 loc) · 5.6 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
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
version: "3"
tasks:
default:
preconditions:
- sh: '[[ -n "{{.app}}" ]]'
msg: "var app must have a value"
silent: true
interactive: true
cmds:
- |
BASE_URL=dev.kloudlite.io
COOKIE_DOMAIN=".dev.kloudlite.io"
GATEWAY_URL="http://gateway-api.kloudlite.svc.cluster.local:3000"
export COOKIE_DOMAIN=".dev.kloudlite.io"
case {{.app}} in
"auth")
PORT=4000
;;
"console")
PORT=4001
;;
"website")
PORT=4005
;;
"devdoc")
PORT=4006
;;
"iot-console")
PORT=4007
;;
*)
PORT=5000
;;
esac
case $(whoami) in
"bikash")
URL_SUFFIX="1"
;;
"vision")
URL_SUFFIX="-vision"
;;
"nxtcoder17")
URL_SUFFIX="-mohit"
;;
"piyush")
URL_SUFFIX="-piyush"
;;
*)
URL_SUFFIX=""
;;
esac
REMIX_DEV_ORIGIN="https://{{.app}}$URL_SUFFIX.$BASE_URL"
cp -r ./static/common/. ./public/
cp -r ./static/{{.app}}/. ./public/
case "{{.tscheck}}" in
"yes")
GATEWAY_URL=$GATEWAY_URL URL_SUFFIX=$URL_SUFFIX APP={{.app}} PORT=$PORT BASE_URL=$BASE_URL REMIX_DEV_ORIGIN=$REMIX_DEV_ORIGIN DEVELOPER=$(whoami) pnpm dev & pnpm typecheck
;;
*)
GATEWAY_URL=$GATEWAY_URL URL_SUFFIX=$URL_SUFFIX APP={{.app}} PORT=$PORT BASE_URL=$BASE_URL REMIX_DEV_ORIGIN=$REMIX_DEV_ORIGIN DEVELOPER=$(whoami) pnpm dev
;;
esac
tscheck:
cmds:
- |
pnpm typecheck:watch
tsgen:
interactive: true
cmds:
- |
pnpm gql:parse
cd src/generated && pnpm tsgen
cd ../.. && pnpm fake
storybook:
cmds:
- |
cd src/design-system && pnpm dev
run:
preconditions:
- sh: '[[ -n "{{.app}}" ]]'
msg: "var app must have a value"
silent: true
cmds:
- |
BASE_URL=kloudlite.io
URL_SUFFIX=""
COOKIE_DOMAIN=".kloudlite.io"
GATEWAY_URL="http://gateway-api.kloudlite.svc.cluster.local:3000"
case {{.app}} in
"auth")
PORT=4000
;;
"community")
PORT=4002
;;
"console")
PORT=4001
;;
"website")
PORT=4005
;;
"devdoc")
PORT=4006
;;
*)
PORT=5000
;;
esac
case $(whoami) in
"bikash")
BASE_URL=dev.kloudlite.io
URL_SUFFIX=1
;;
"vision")
BASE_URL=dev.kloudlite.io
URL_SUFFIX="-vision"
;;
"piyush")
BASE_URL=dev.kloudlite.io
URL_SUFFIX=""
;;
*)
URL_SUFFIX=""
;;
esac
GATEWAY_URL=$GATEWAY_URL URL_SUFFIX=$URL_SUFFIX COOKIE_DOMAIN=$COOKIE_DOMAIN BASE_URL=$BASE_URL PORT=$PORT APP={{.app}} pnpm serve
build:
preconditions:
- sh: '[[ -n "{{.app}}" ]]'
msg: "var app must have a value"
silent: true
cmds:
- APP={{.app}} pnpm build
docker-build:
preconditions:
- sh: '[[ -n "{{.app}}" ]]'
msg: "var app must have a value"
- sh: '[[ -n "{{.tag}}" ]]'
msg: "var tag must have a value"
silent: true
vars:
IMAGE: ghcr.io/kloudlite/kloudlite/web/{{.app}}:{{.tag}}
cmds:
- docker build --build-arg APP={{.app}} . -t {{.IMAGE}}
- docker push {{.IMAGE}}
docker-build-all:
preconditions:
- sh: '[[ -n "{{.tag}}" ]]'
msg: "var tag must have a value"
silent: true
vars:
IMAGE: ghcr.io/kloudlite/web
cmds:
- docker build --build-arg APP=auth . -t {{.IMAGE}}/auth:{{.tag}}
- docker push {{.IMAGE}}/auth:{{.tag}}
- docker build --build-arg APP=console . -t {{.IMAGE}}/console:{{.tag}}
- docker push {{.IMAGE}}/console:{{.tag}}
docker-build-website:
preconditions:
- sh: '[[ -n "{{.tag}}" ]]'
msg: "var tag must have a value"
silent: false
cmds:
# - cd ./src/design-system && mkdir -p out && pnpm local:release
- docker buildx build . -t {{.tag}} -f Dockerfile.website
container-build-webinar:
preconditions:
- sh: '[[ -n "{{.tag}}" ]]'
msg: "var tag must have a value"
vars:
Image: ghcr.io/kloudlite/web/events:{{.tag}}
cmds:
# - docker buildx build . -t {{.Image}} -f Dockerfile.webinar
- docker build -t {{.Image}} -f Dockerfile.webinar .
container-push-webinar:
preconditions:
- sh: '[[ -n "{{.tag}}" ]]'
msg: "var tag must have a value"
vars:
Image: ghcr.io/kloudlite/web/events:{{.tag}}
cmds:
- docker buildx build . -t {{.Image}} --platform linux/amd64 -f Dockerfile.webinar --output=type=image,compression=zstd,force-compression=true,compression-level=12,push=true
container-push-dashboard:
preconditions:
- sh: '[[ -n "{{.app}}" ]]'
msg: "var app must have a value"
- sh: '[[ -n "{{.tag}}" ]]'
msg: "var tag must have a value"
silent: true
vars:
IMAGE: ghcr.io/kloudlite/web/{{.app}}:{{.tag}}
cmds:
- docker buildx build --build-arg APP={{.app}} . -t {{.IMAGE}} --platform linux/amd64 --output=type=image,compression=zstd,force-compression=true,compression-level=12,push=true