-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
17 lines (13 loc) · 822 Bytes
/
Makefile
File metadata and controls
17 lines (13 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: messages
messages:
uv run python manage.py makemessages --ignore=node_modules --ignore=venv --ignore=.venv --ignore=docs --all --no-location --settings=core.settings_dev
uv run python manage.py makemessages -d djangojs --all --pythonpath=../acceslibre --ignore=venv --ignore=node_modules --ignore=static/dist --ignore=docs --no-location --settings=core.settings_dev
.PHONY: compilemessages
compilemessages:
uv run python manage.py compilemessages --settings=core.settings_dev --ignore=venv --ignore=node_modules --ignore=static/dist --ignore=docs --ignore=.venv
.PHONY: translate
translate:
uv run python manage.py translate_messages --untranslated --source-language="french" --locale "en" --settings=core.settings_dev
.PHONY: runserver
runserver:
uv run manage.py runserver --settings=core.settings_dev