-
Notifications
You must be signed in to change notification settings - Fork 0
/
justfile
252 lines (174 loc) · 6.95 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
# 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}
# 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
_dev-config:
#!/usr/bin/env bash
set -euo pipefail
# configure the local dev env
set -eu
test -f .dev-configured && exit
./scripts/dev-env.sh .env
touch .dev-configured
# && 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
# *ARGS is variadic, 0 or more. This allows us to do `just test -k match`, for example.
# Run the tests
test *args: assets
$BIN/coverage run \
--branch \
--source=gateway,reports,services,tests \
--module pytest \
{{ args }}
$BIN/coverage report || $BIN/coverage html
black *args=".": devenv
$BIN/black --check {{ args }}
ruff *args=".": devenv
$BIN/ruff check {{ args }}
# run the various dev checks but does not change any files
check: black ruff
# fix formatting and import sort ordering
fix: devenv
$BIN/black .
$BIN/ruff --fix .
# setup/update local dev environment
dev-setup: devenv
$BIN/python manage.py migrate
$BIN/python manage.py collectstatic --no-input --clear | grep -v '^Deleting '
# create an admin/admin superuser locally if necessary
$BIN/python manage.py ensure_superuser
# ensure the local app is populated with example reports
INCLUDE_PRIVATE=t $BIN/python manage.py populate_reports
# ensure the researchers group exists with relevant permissions
$BIN/python manage.py ensure_groups
# create the database cache table
$BIN/python manage.py createcachetable
# Run the dev project
run port="8000": _dev-config assets
$BIN/python manage.py runserver localhost:{{ port }}
# blow away the local database and repopulate it
dev-reset:
rm db.sqlite3
rm http_cache.sqlite
just dev-setup
# Remove built assets and collected static files
assets-clean:
rm -rf assets/dist
rm -rf staticfiles
# Install the Node.js dependencies
assets-install:
#!/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
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
# Collect the static files
assets-collect: devenv
#!/usr/bin/env bash
set -euo pipefail
# exit if nothing has changed in the built assets since we last collected staticfiles.
# -nt == "newer than", but we negate with || to avoid error exit code
test assets/dist/.written -nt staticfiles/.written || exit 0
$BIN/python manage.py collectstatic --no-input
touch staticfiles/.written
assets: assets-install assets-build assets-collect
assets-rebuild: assets-clean assets
# build docker image env=dev|prod
docker-build env="dev": _env
{{ just_executable() }} docker/build {{ env }}
# run tests in docker container
docker-test *args="": _env
{{ just_executable() }} docker/test {{ args }}
# run dev server in docker container
docker-serve: _env
{{ just_executable() }} docker/serve
# 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 }}