-
Notifications
You must be signed in to change notification settings - Fork 25
/
Makefile
89 lines (70 loc) · 2.03 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
# Loading environment variables
ifneq (,$(wildcard ./.env))
include .env
export
endif
ifeq ($(USE_DOCKER),1)
EXEC_CMD := docker compose exec -ti web
else
EXEC_CMD :=
endif
.PHONY: web-prompt
web-prompt:
$(EXEC_CMD) bash
.PHONY: collectstatic
collectstatic:
$(EXEC_CMD) poetry run python manage.py collectstatic --noinput --ignore=*.sass
.PHONY: messages
messages:
$(EXEC_CMD) poetry run django-admin makemessages -l fr --ignore=manage.py --ignore=config --ignore=medias --ignore=__init__.py --ignore=setup.py --ignore=staticfiles
.PHONY: sass
sass:
$(EXEC_CMD) poetry run python manage.py compilescss
make collectstatic
.PHONY: quality
quality:
$(EXEC_CMD) ruff check .
$(EXEC_CMD) poetry run black --check --exclude=venv .
.PHONY: fix
fix:
$(EXEC_CMD) ruff check . --fix
$(EXEC_CMD) poetry run black --exclude=venv .
.PHONY: index
index:
$(EXEC_CMD) poetry run python manage.py update_index
.PHONY: init
init:
$(EXEC_CMD) poetry install --without dev
$(EXEC_CMD) poetry run python manage.py migrate
make collectstatic
$(EXEC_CMD) poetry run python manage.py set_config
$(EXEC_CMD) poetry run python manage.py import_dsfr_pictograms
$(EXEC_CMD) poetry run python manage.py create_starter_pages
$(EXEC_CMD) poetry run python manage.py import_page_templates
make index
.PHONY: init-dev
init-dev:
make init
$(EXEC_CMD) poetry install
$(EXEC_CMD) poetry run pre-commit install
.PHONY: update
update:
$(EXEC_CMD) poetry install --without dev
$(EXEC_CMD) poetry run python manage.py migrate
make collectstatic
$(EXEC_CMD) poetry run python manage.py import_dsfr_pictograms
$(EXEC_CMD) poetry run python manage.py import_page_templates
make index
.PHONY: demo
demo:
make init
$(EXEC_CMD) poetry run python manage.py create_demo_pages
.PHONY: runserver
runserver:
$(EXEC_CMD) poetry run python manage.py runserver $(HOST_URL):$(HOST_PORT)
.PHONY: test
test:
$(EXEC_CMD) poetry run python manage.py test --buffer --parallel
.PHONY: test-unit
test-unit:
$(EXEC_CMD) poetry run python manage.py test --settings config.settings_test