forked from openedx/license-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
249 lines (183 loc) · 10.2 KB
/
Makefile
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
.DEFAULT_GOAL := help
.PHONY: help clean piptools requirements ci_requirements dev_requirements \
validation_requirements doc_requirements production-requirements static shell \
test coverage isort_check isort style lint quality pii_check validate \
migrate html_coverage upgrade extract_translation dummy_translations \
compile_translations fake_translations pull_translations \
push_translations start-devstack open-devstack pkg-devstack \
detect_changed_source_translations validate_translations
define BROWSER_PYSCRIPT
import os, webbrowser, sys
try:
from urllib import pathname2url
except:
from urllib.request import pathname2url
webbrowser.open("file://" + pathname2url(os.path.abspath(sys.argv[1])))
endef
export BROWSER_PYSCRIPT
BROWSER := python -c "$$BROWSER_PYSCRIPT"
# Generates a help message. Borrowed from https://github.com/pydanny/cookiecutter-djangopackage.
help: ## display this help message
@echo "Please use \`make <target>\` where <target> is one of"
@awk -F ':.*?## ' '/^[a-zA-Z]/ && NF==2 {printf "\033[36m %-25s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) | sort
clean: ## delete generated byte code and coverage reports
find . -name '*.pyc' -delete
coverage erase
rm -rf assets
rm -rf pii_report
piptools: ## install pinned version of pip-compile and pip-sync
pip install -r requirements/pip-tools.txt
requirements: piptools dev_requirements ## sync to default requirements
ci_requirements: piptools validation_requirements ## sync to requirements needed for CI checks
dev_requirements: ## sync to requirements for local development
pip-sync -q requirements/dev.txt
validation_requirements: ## sync to requirements for testing & code quality checking
pip-sync -q requirements/validation.txt
doc_requirements:
pip-sync -q requirements/doc.txt
production-requirements: piptools ## install requirements for production
pip-sync -q requirements/production.txt
static: ## generate static files
python manage.py collectstatic --noinput
django_shell: ## run Django shell
python manage.py shell
test: clean ## run tests and generate coverage report
## ``--ds`` Has the highest settings precedence:
## https://pytest-django.readthedocs.io/en/latest/configuring_django.html#order-of-choosing-settings
pytest --ds=license_manager.settings.test
# To be run from CI context
coverage: clean
pytest --cov-report html
$(BROWSER) htmlcov/index.html
isort_check: ## check that isort has been run
isort --check-only --diff -rc license_manager/
isort: ## run isort to sort imports in all Python files
isort --recursive --atomic license_manager/
style: ## run Python style checker
pycodestyle license_manager *.py
lint: ## run Python code linting
edx_lint write pylintrc # first, write pylintrc in case tweaks have changed
DJANGO_SETTINGS_MODULE=license_manager.settings.test \
pylint --rcfile=pylintrc license_manager *.py
quality: style isort_check lint ## check code style and import sorting, then lint
quality_fix: style isort lint ## Check code style, FIX any imports, then lint
pii_check: ## check for PII annotations on all Django models
DJANGO_SETTINGS_MODULE=license_manager.settings.test \
code_annotations django_find_annotations --config_file .pii_annotations.yml --lint --report --coverage
validate: test quality pii_check ## run tests, quality, and PII annotation checks
migrate: ## apply database migrations
python manage.py migrate
app-migrate: ## apply database migrations without having to type `make app-shell` first
docker exec -u 0 -it license-manager.app python manage.py migrate
dev.migrate: app-migrate
html_coverage: ## generate and view HTML coverage report
coverage html && open htmlcov/index.html
define COMMON_CONSTRAINTS_TEMP_COMMENT
# This is a temporary solution to override the real common_constraints.txt\n# In edx-lint, until the pyjwt constraint in edx-lint has been removed.\n# See BOM-2721 for more details.\n# Below is the copied and edited version of common_constraints\n
endef
COMMON_CONSTRAINTS_TXT=requirements/common_constraints.txt
.PHONY: $(COMMON_CONSTRAINTS_TXT)
$(COMMON_CONSTRAINTS_TXT):
wget -O "$(@)" https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt || touch "$(@)"
echo "$(COMMON_CONSTRAINTS_TEMP_COMMENT)" | cat - $(@) > temp && mv temp $(@)
upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade
upgrade: piptools $(COMMON_CONSTRAINTS_TXT) ## update the requirements/*.txt files with the latest packages satisfying requirements/*.in
# This is a temporary solution to override the real common_constraints.txt
# In edx-lint, until the pyjwt constraint in edx-lint has been removed.
# See BOM-271 for more details.
sed -i 's/Django<4.0//g' requirements/common_constraints.txt
sed -i 's/django-simple-history==3.0.0//g' requirements/common_constraints.txt
# Make sure to compile files after any other files they include!
pip-compile --upgrade --rebuild --allow-unsafe -o requirements/pip.txt requirements/pip.in
pip-compile --upgrade -o requirements/pip-tools.txt requirements/pip-tools.in
pip install -qr requirements/pip.txt
pip install -qr requirements/pip-tools.txt
pip-compile --upgrade -o requirements/base.txt requirements/base.in
pip-compile --upgrade -o requirements/test.txt requirements/test.in
pip-compile --upgrade -o requirements/doc.txt requirements/doc.in
pip-compile --upgrade -o requirements/quality.txt requirements/quality.in
pip-compile --upgrade -o requirements/validation.txt requirements/validation.in
pip-compile --upgrade -o requirements/dev.txt requirements/dev.in
pip-compile --upgrade -o requirements/production.txt requirements/production.in
extract_translations: ## extract strings to be translated, outputting .mo files
python manage.py makemessages -l en -v1 -d django
python manage.py makemessages -l en -v1 -d djangojs
dummy_translations: ## generate dummy translation (.po) files
cd license_manager && i18n_tool dummy
compile_translations: # compile translation files, outputting .po files for each supported language
python manage.py compilemessages
fake_translations: ## generate and compile dummy translation files
pull_translations: ## pull translations from Transifex
tx pull -t -a -f --mode reviewed
push_translations: ## push source translation files (.po) from Transifex
tx push -s
open-devstack: ## open a shell on the server started by start-devstack
docker exec -it license-manager /edx/app/license_manager/devstack.sh open
pkg-devstack: ## build the license-manager image from the latest configuration and code
docker build -t license-manager:latest -f docker/build/license_manager/Dockerfile git://github.com/openedx/configuration
detect_changed_source_translations: ## check if translation files are up-to-date
cd license_manager && i18n_tool changed
validate_translations: fake_translations detect_changed_source_translations ## install fake translations and check if translation files are up-to-date
# Docker dev commands below
dev.provision:
bash ./provision-license-manager.sh
dev.up: dev.up.redis # Starts all of the services, will bring up the devstack-defined redis container if not running.
docker-compose up -d
dev.up.build:
docker-compose up -d --build
dev.up.build-no-cache:
docker-compose build --no-cache
docker-compose up -d
dev.up.redis:
docker-compose -f $(DEVSTACK_WORKSPACE)/devstack/docker-compose.yml up -d redis
dev.down: # Kills containers and all of their data that isn't in volumes
docker-compose down
dev.stop: # Stops containers so they can be restarted
docker-compose stop
%-shell: # Run a shell, as root, on the specified service container
docker exec -u 0 -it license-manager.$* bash
mysql-client-shell: # Will drop you directly into a mysql client shell.
docker exec -u 0 -it license-manager.mysql mysql license_manager
%-logs: # View the logs of the specified service container
docker-compose logs -f --tail=500 $*
%-restart: # Restart the specified service container
docker-compose restart $*
%-attach:
docker attach license-manager.$*
app-restart-devserver: ## Kill the license-manager development server. Watcher should restart it.
docker-compose exec app bash -c 'kill $$(ps aux | egrep "manage.py ?\w* runserver" | egrep -v "while|grep" | awk "{print \$$2}")'
worker-restart-celery: ## Kill the existing celery process and restart them
docker-compose exec worker bash -c 'ps aux | egrep "celery" | egrep -v "grep" | awk "{print \$$2}" | xargs kill -HUP'
dev.stats: ## Get per-container CPU and memory utilization data.
docker stats --format "table {{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}"
dev.backup:
docker-compose stop app worker bulk_enrollment_worker
docker-compose up -d mysql
sleep 10 # let mysql process get fully warmed up
docker compose exec mysql mysqldump --all-databases > .dev/license_manager_all.sql
dev.restore:
docker-compose stop app worker bulk_enrollment_worker
docker-compose up -d mysql
sleep 10 # let mysql process get fully warmed up
docker compose exec -T mysql mysql < .dev/license_manager_all.sql
dev.static:
docker-compose exec -u 0 app python3 manage.py collectstatic --noinput
docker_build:
docker build . -f Dockerfile --target app -t openedx/license-manager
docker build . -f Dockerfile --target devstack -t openedx/license-manager:latest-devstack
docker build . -f Dockerfile --target app -t openedx/license-manager.worker
docker build . -f Dockerfile --target devstack -t openedx/license-manager.worker:latest-devstack
docker build . -f Dockerfile --target newrelic -t openedx/license-manager:latest-newrelic
docker_tag: docker_build
docker tag openedx/license-manager openedx/license-manager:$$GITHUB_SHA
docker tag openedx/license-manager:latest-devstack openedx/license-manager:$$GITHUB_SHA-devstack
docker tag openedx/license-manager:latest-newrelic openedx/license-manager:$$GITHUB_SHA-newrelic
docker_auth:
echo "$$DOCKERHUB_PASSWORD" | docker login -u "$$DOCKERHUB_USERNAME" --password-stdin
docker_push: docker_tag docker_auth ## push to docker hub
docker push 'openedx/license-manager:latest'
docker push "openedx/license-manager:$$GITHUB_SHA"
docker push 'openedx/license-manager:latest-devstack'
docker push "openedx/license-manager:$$GITHUB_SHA-devstack"
docker push 'openedx/license-manager:latest-newrelic'
docker push "openedx/license-manager:$$GITHUB_SHA-newrelic"