django-notifications/Makefile

25 lines
468 B
Makefile
Raw Normal View History

up:
2023-06-16 01:29:59 +00:00
docker-compose up --remove-orphans
tests:
poetry run python -m tox run-parallel
server:
poetry run python manage.py runserver 0.0.0.0:8000
2023-06-16 01:29:59 +00:00
run: server
makemigrations:
poetry run python manage.py makemigrations
migrate:
poetry run python manage.py migrate
shell:
poetry run python manage.py shell
2023-06-23 23:24:33 +00:00
pylint:
poetry run pylint --django-settings-module="notifications.settings" notifications/
bandit:
poetry run bandit -c pyproject.toml -r notifications/