jonra1993 / fastapi-alembic-sqlmodel-async

This is a project template which uses FastAPI, Pydantic 2.0, Alembic and async SQLModel as ORM. It shows a complete async CRUD using authentication and role base access control.
MIT License
879 stars 143 forks source link

Fix uvicorn not reloading after applying changes #24

Closed hambergerpls closed 1 year ago

hambergerpls commented 1 year ago

While running the server via make run-dev, changes applied to the code should reload the server automatically, but it doesn't.

The problem was caused by watchfiles not being added to poetry dependencies.

jonra1993 commented 1 year ago

Thanks for this PR @hambergerpls