django-notifications/Makefile
2023-06-23 20:24:33 -03:00

24 lines
468 B
Makefile

up:
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
run: server
makemigrations:
poetry run python manage.py makemigrations
migrate:
poetry run python manage.py migrate
shell:
poetry run python manage.py shell
pylint:
poetry run pylint --django-settings-module="notifications.settings" notifications/
bandit:
poetry run bandit -c pyproject.toml -r notifications/