Updating Makefile
Some checks failed
Build / Code quality (push) Failing after 23s

This commit is contained in:
2025-02-04 15:46:54 -03:00
parent 7b588edda6
commit ff010739c4
2 changed files with 12 additions and 10 deletions

View File

@@ -8,3 +8,4 @@ packages/
django_dbml/ django_dbml/
node_modules/ node_modules/
**/*.pyc **/*.pyc
.venv

View File

@@ -19,10 +19,10 @@ help:
@echo "―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――" @echo "―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――"
run: run:
@poetry run python manage.py runserver 0.0.0.0:7788 @uv run python manage.py runserver 0.0.0.0:7788
celery: celery:
@poetry run celery -A app worker -l INFO --concurrency=2 -Q default -E @uv run celery -A app worker -l INFO --concurrency=2 -Q default -E
docker-run: docker-run:
@docker-compose up @docker-compose up
@@ -34,19 +34,20 @@ docker-run-worker:
@docker-compose up worker @docker-compose up worker
shell: shell:
@poetry run python manage.py shell @uv run python manage.py shell
makemigrations: makemigrations:
@poetry run python manage.py makemigrations @uv run python manage.py makemigrations
migrate: migrate:
@poetry run python manage.py migrate @uv run python manage.py migrate
collectstatic: collectstatic:
@poetry run python manage.py collectstatic @uv run python manage.py collectstatic
blue: lint:
@poetry run blue . @uv run ruff format .
@uv run ruff check .
isort: fix-lint:
@poetry run isort . @uv run ruff check . --fix