feat(makefile): update run command to exclude frontend and log files during reload

This commit is contained in:
Davidson Gomes
2025-05-24 10:27:30 -03:00
parent 956d16a854
commit c4a4e5fd68
30 changed files with 2184 additions and 563 deletions

View File

@@ -18,7 +18,7 @@ alembic-downgrade:
# Command to run the server
run:
uvicorn src.main:app --host 0.0.0.0 --port 8000 --reload --env-file .env
uvicorn src.main:app --host 0.0.0.0 --port 8000 --reload --env-file .env --reload-exclude frontend/ --reload-exclude "*.log" --reload-exclude "*.tmp"
# Command to run the server in production mode
run-prod: