mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-17 05:40:25 +00:00
24 lines
468 B
Makefile
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/
|