Pavel Kirilin
Pavel Kirilin
Hi, you did a super cool library, but I couldn't use it in our ecosystem. These options are here to help this library to be more generic. In many cases...
Signed-off-by: Pavel Kirilin
Gunicorn with uvicorn workers is faster than raw uvicorn. This feature might be useful for folks who want to gain more speed to their projects.
Many opensource projects use travis-ci to build systems. It would be nice to have ability to generate such configs.
We need to create an AWS configuration for cloud deploy. I guess, that terraform is a really good way to create infrastructure. In this thread we must choose the best...
[GINO](https://python-gino.org/) is a new async ORM on top of SQLAlchemy. It must be relatively easy to add this ORM, because we already have alembic integration.
Signed-off-by: Pavel Kirilin
I found a problem using `types-redis` library with new redis.asyncio module. The problem is that mypy throws an error. The code: ``` async def get_redis_connection(request: Request) -> AsyncGenerator[Redis, None]: ```...
## In a nutshell I found attribute error when accessing graphiql page. I use custom context class. This is the original issue [#96](https://github.com/s3rius/FastAPI-template/issues/96). ## Describe the Bug When accessing graphiql...
Create S3 Data storage to be able to store files on S3. The main idea is to create many file chunks 5MB each and concatenate them after upload is finished.