-
Notifications
You must be signed in to change notification settings - Fork 19
/
Makefile
214 lines (159 loc) · 8.4 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
.DEFAULT_GOAL := help
TOX = ''
.PHONY: help clean piptools requirements dev_requirements \
doc_requirements prod_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 \
dev.provision dev.init dev.makemigrations dev.migrate dev.up \
dev.up.build dev.down dev.destroy dev.stop docker_build \
shellcheck check_keywords install_transifex_client
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 "$(@)"
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 := python3 -c "$$BROWSER_PYSCRIPT"
ifdef TOXENV
TOX := tox -- #to isolate each tox environment if TOXENV is defined
endif
help: ## display this help message
@echo "Please use \`make <target>' where <target> is one of"
@perl -nle'print $& if m{^[\.a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m %-25s\033[0m %s\n", $$1, $$2}'
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
dev_requirements: ## sync to requirements for local development
pip-sync -q requirements/dev.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
python3 manage.py collectstatic --noinput
shell: ## run Django shell
python3 manage.py shell
test: clean ## run tests and generate coverage report
$(TOX)python3 -Wd -m pytest
# 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 enterprise_catalog/
isort: ## run isort to sort imports in all Python files
isort --atomic enterprise_catalog/
style: ## run Python style checker
pycodestyle enterprise_catalog *.py
lint: ## run Python code linting
pylint --rcfile=pylintrc enterprise_catalog *.py
quality: clean style isort_check lint ## check code style and import sorting, then lint
pii_check: ## check for PII annotations on all Django models
DJANGO_SETTINGS_MODULE=enterprise_catalog.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
python3 manage.py migrate
html_coverage: ## generate and view HTML coverage report
coverage html && open htmlcov/index.html
upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade
upgrade: $(COMMON_CONSTRAINTS_TXT) piptools ## update the requirements/*.txt files with the latest packages satisfying requirements/*.in
# Make sure to compile files after any other files they include!
sed 's/django-simple-history==3.0.0//g' requirements/common_constraints.txt > requirements/common_constraints.tmp
mv requirements/common_constraints.tmp requirements/common_constraints.txt
pip-compile --allow-unsafe --rebuild --upgrade -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
# Let tox control the Django version for tests
grep -e "^django==" requirements/base.txt > requirements/django.txt
sed '/^[dD]jango==/d' requirements/test.txt > requirements/test.tmp
mv requirements/test.tmp requirements/test.txt
extract_translations: ## extract strings to be translated, outputting .mo files
python3 manage.py makemessages -l en -v1 -d django
python3 manage.py makemessages -l en -v1 -d djangojs
dummy_translations: ## generate dummy translation (.po) files
cd enterprise_catalog && i18n_tool dummy
compile_translations: # compile translation files, outputting .po files for each supported language
python3 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
start-devstack: ## run a local development copy of the server
docker-compose --x-networking up
open-devstack: ## open a shell on the server started by start-devstack
docker exec -it enterprise_catalog /edx/app/catalog/devstack.sh open
detect_changed_source_translations: ## check if translation files are up-to-date
cd enterprise_catalog && i18n_tool changed
validate_translations: fake_translations detect_changed_source_translations ## install fake translations and check if translation files are up-to-date
# Docker commands below
dev.provision:
bash ./provision-catalog.sh
dev.init: dev.up dev.migrate # start the docker container and run migrations
dev.makemigrations:
docker exec -it enterprise.catalog.app bash -c 'cd /edx/app/enterprise_catalog/enterprise_catalog && python3 manage.py makemigrations'
dev.migrate: # Migrates databases. Application and DB server must be up for this to work.
docker exec -it enterprise.catalog.app bash -c 'cd /edx/app/enterprise_catalog/enterprise_catalog && make migrate'
dev.up: dev.up.redis # Starts all containers
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.destroy: dev.down # Kills containers and destroys volumes. If you get an error after running this, also run: docker volume rm portal-designer_designer_mysql
docker volume rm enterprise-catalog_enterprise_catalog_mysql
dev.stop: # Stops containers so they can be restarted
docker-compose stop
dev.backup:
docker-compose stop app worker
docker-compose up -d mysql
sleep 10 # let mysql process get fully warmed up
docker compose exec mysql mysqldump --all-databases > .dev/enterprise_catalog_all.sql
dev.restore:
docker-compose stop app worker
docker-compose up -d mysql
sleep 10 # let mysql process get fully warmed up
docker compose exec -T mysql mysql < .dev/enterprise_catalog_all.sql
mysql-client: # Opens mysql client in the mysql container shell
docker-compose exec -u 0 mysql env TERM=$(TERM) mysql enterprise_catalog
%-shell: ## Run a shell, as root, on the specified service container
docker-compose exec -u 0 $* env TERM=$(TERM) bash
%-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: ## Attach terminal I/O to the specified service container
docker attach enterprise.catalog.$*
dev.static:
docker-compose exec -u 0 app python3 manage.py collectstatic --noinput
docker_auth:
echo "$$DOCKERHUB_PASSWORD" | docker login -u "$$DOCKERHUB_USERNAME" --password-stdin
check_keywords: ## Scan the Django models in all installed apps in this project for restricted field names
python manage.py check_reserved_keywords --override_file db_keyword_overrides.yml
install_transifex_client: ## Install the Transifex client
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
git checkout -- LICENSE README.md