FastAPI-Production-Boilerplate icon indicating copy to clipboard operation
FastAPI-Production-Boilerplate copied to clipboard

A scalable and production ready boilerplate for FastAPI

Results 7 FastAPI-Production-Boilerplate issues
Sort by recently updated
recently updated
newest added

Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.0 to 41.0.4. Changelog Sourced from cryptography's changelog. 41.0.4 - 2023-09-19 * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.1.3. .. _v41-0-3: 41.0.3...

dependencies

Bumps [certifi](https://github.com/certifi/python-certifi) from 2022.12.7 to 2023.7.22. Commits 8fb96ed 2023.07.22 afe7722 Bump actions/setup-python from 4.6.1 to 4.7.0 (#230) 2038739 Bump dessant/lock-threads from 3.0.0 to 4.0.1 (#229) 44df761 Hash pin Actions and...

dependencies

When i run make migrate, i got this error `$ make migrate poetry run alembic upgrade head Traceback (most recent call last): File "", line 198, in _run_module_as_main File "",...

Why don't we use the JWTHandler class in the authentication middleware to decode the received token, so we can also handle exceptions properly?

In the `@Transactional` annotation, the code supports two Propagation types: `REQUIRED` and `REQUIRED_NEW`. The only difference appears to be that `REQUIRED_NEW` starts a session, whereas `REQUIRED` assumes one is already...

`register user` ``` TypeError: object Select can't be used in 'await' expression ``` It's working if I remove await in this line: `query = await self._query(join_)` or if I change...

The authentication dependency is not handling the authentication properly. the authentication middleware adds the auth and user to scope but these are not utilised in the the authentication dependency. The...