-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathjustfile
288 lines (194 loc) · 7.64 KB
/
justfile
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
276
277
278
279
280
281
282
283
284
285
286
287
288
# just has no idiom for setting a default value for an environment variable
# so we shell out, as we need VIRTUAL_ENV in the justfile environment
export VIRTUAL_ENV := `echo ${VIRTUAL_ENV:-.venv}`
# TODO: make it /scripts on windows?
export BIN := VIRTUAL_ENV + "/bin"
export PIP := BIN + "/python -m pip"
# enforce our chosen pip compile flags
export COMPILE := BIN + "/pip-compile --allow-unsafe --generate-hashes"
# Load .env files by default
set dotenv-load := true
# list available commands
default:
@{{ just_executable() }} --list
# clean up temporary files
clean:
rm -rf .venv
# ensure valid virtualenv
virtualenv:
#!/usr/bin/env bash
set -euo pipefail
# allow users to specify python version in .env
PYTHON_VERSION=${PYTHON_VERSION:-python3.12}
# Error if venv does not contain the version of Python we expect
if test -d $VIRTUAL_ENV; then
test -e $BIN/$PYTHON_VERSION || \
{ echo "Did not find $PYTHON_VERSION in $VIRTUAL_ENV (try deleting the virtualenv (just clean) and letting it re-build)"; exit 1; }
fi
# create venv and upgrade pip
test -d $VIRTUAL_ENV || { $PYTHON_VERSION -m venv $VIRTUAL_ENV && $PIP install --upgrade pip; }
# ensure we have pip-tools so we can run pip-compile
test -e $BIN/pip-compile || $PIP install pip-tools
_compile src dst *args: virtualenv
#!/usr/bin/env bash
set -euo pipefail
# exit if src file is older than dst file (-nt = 'newer than', but we negate with || to avoid error exit code)
test "${FORCE:-}" = "true" -o {{ src }} -nt {{ dst }} || exit 0
$BIN/pip-compile --allow-unsafe --generate-hashes --output-file={{ dst }} {{ src }} {{ args }}
# update requirements.prod.txt if requirements.prod.in has changed
requirements-prod *args:
{{ just_executable() }} _compile requirements.prod.in requirements.prod.txt {{ args }}
# update requirements.dev.txt if requirements.dev.in has changed
requirements-dev *args: requirements-prod
{{ just_executable() }} _compile requirements.dev.in requirements.dev.txt {{ args }}
# ensure prod requirements installed and up to date
prodenv: requirements-prod
#!/usr/bin/env bash
set -euo pipefail
# exit if .txt file has not changed since we installed them (-nt == "newer than', but we negate with || to avoid error exit code)
test requirements.prod.txt -nt $VIRTUAL_ENV/.prod || exit 0
$PIP install -r requirements.prod.txt
touch $VIRTUAL_ENV/.prod
_env:
#!/usr/bin/env bash
set -euo pipefail
test -f .env || cp dotenv-sample .env
# && dependencies are run after the recipe has run. Needs just>=0.9.9. This is
# a killer feature over Makefiles.
#
# ensure dev requirements installed and up to date
devenv: _env prodenv requirements-dev && install-precommit
#!/usr/bin/env bash
set -euo pipefail
# exit if .txt file has not changed since we installed them (-nt == "newer than', but we negate with || to avoid error exit code)
test requirements.dev.txt -nt $VIRTUAL_ENV/.dev || exit 0
$PIP install -r requirements.dev.txt
touch $VIRTUAL_ENV/.dev
# ensure precommit is installed
install-precommit:
#!/usr/bin/env bash
set -euo pipefail
BASE_DIR=$(git rev-parse --show-toplevel)
test -f $BASE_DIR/.git/hooks/pre-commit || $BIN/pre-commit install
# upgrade dev or prod dependencies (specify package to upgrade single package, all by default)
upgrade env package="": virtualenv
#!/usr/bin/env bash
set -euo pipefail
opts="--upgrade"
test -z "{{ package }}" || opts="--upgrade-package {{ package }}"
FORCE=true {{ just_executable() }} requirements-{{ env }} $opts
# Upgrade all dev and prod dependencies.
# This is the default input command to update-dependencies action
# https://github.com/opensafely-core/update-dependencies-action
update-dependencies:
just upgrade prod
just upgrade dev
# *ARGS is variadic, 0 or more. This allows us to do `just test -k match`, for example.
# Run the python tests
test-py *ARGS: devenv
$BIN/python manage.py collectstatic --no-input && \
$BIN/python -m pytest \
--cov=builder \
--cov=codelists \
--cov=coding_systems \
--cov=mappings \
--cov=opencodelists \
--cov-report html \
--cov-report term-missing:skip-covered {{ ARGS }}
# Run all the tests
test: assets-test test-py
# Run formatting checks
format *args=".": devenv
$BIN/ruff format --check {{ args }}
# Run linting checks (unused variables etc.)
ruff *args=".": devenv
$BIN/ruff check {{ args }}
# run the various dev checks but does not change any files
check *args: devenv ruff format
# fix formatting and import sort ordering
fix: devenv
$BIN/ruff check --fix .
$BIN/ruff format .
# setup/update local dev environment
dev-setup: devenv assets
$BIN/python manage.py migrate
# Run the dev project
run: devenv
$BIN/python manage.py runserver localhost:7000
# Remove built assets and collected static files
assets-clean:
rm -rf assets/dist
rm -rf staticfiles
# Install the Node.js dependencies
assets-install *args="":
#!/usr/bin/env bash
set -euo pipefail
# exit if lock file has not changed since we installed them. -nt == "newer than",
# but we negate with || to avoid error exit code
test package-lock.json -nt node_modules/.written || exit 0
npm ci {{ args }}
touch node_modules/.written
# Build the Node.js assets
assets-build:
#!/usr/bin/env bash
set -euo pipefail
# find files which are newer than dist/.written in the src directory. grep
# will exit with 1 if there are no files in the result. We negate this
# with || to avoid error exit code
# we wrap the find in an if in case dist/.written is missing so we don't
# trigger a failure prematurely
if test -f assets/dist/.written; then
find assets/src -type f -newer assets/dist/.written | grep -q . || exit 0
fi
npm run build
touch assets/dist/.written
# Ensure django's collectstatic is run if needed
collectstatic: devenv
./scripts/collect-me-maybe.sh $BIN/python
# install npm toolchain, build assets, and then collect assets
assets: assets-install assets-build collectstatic
# rebuild all npm/static assets
assets-rebuild: assets-clean assets
assets-run: assets-install
#!/usr/bin/env bash
set -euo pipefail
if [ "$ASSETS_DEV_MODE" == "False" ]; then
echo "Set ASSETS_DEV_MODE to a truthy value to run this command"
exit 1
fi
npm run dev
assets-lint: assets-install
npm run lint
assets-test: assets-install
npm run lint
npm run test:coverage
# build docker image env=dev|prod
docker-build env="dev": _env
{{ just_executable() }} docker/build {{ env }}
# run js checks in docker container
docker-check-js: _env
{{ just_executable() }} docker/check-js
# run js checks in docker container
docker-check-py: _env
{{ just_executable() }} docker/check-py
# run python tests in docker container
docker-test-py *args="": _env
{{ just_executable() }} docker/test-py {{ args }}
# run js tests in docker container
docker-test-js: _env
{{ just_executable() }} docker/test-js
# run tests in docker container
docker-test: _env
{{ just_executable() }} docker/test
# run dev server in docker container
docker-serve env="dev" *args="": _env
{{ just_executable() }} docker/serve {{ env }} {{ args }}
# run cmd in dev docker continer
docker-run *args="bash": _env
{{ just_executable() }} docker/run {{ args }}
# exec command in an existing dev docker container
docker-exec *args="bash": _env
{{ just_executable() }} docker/exec {{ args }}
# run tests in docker container
docker-smoke-test host="http://localhost:7000": _env
{{ just_executable() }} docker/smoke-test {{ host }}