-
According to @provinzkraut:
```text
Tthe time it takes to import starlite is exorbitant compared to other libraries.
starlette: 0.064s
fastapi: 0.4s
flask: 0.2s
sanic: 0.2s
django: 0.07
sqla…
-
FastAPI has a [simple mechanism for accessing client information](https://stackoverflow.com/a/66015976) from the `Request` object. It looks like this information is stored in `ASGIConnection` in Starl…
-
I've been testing out the LoggingMiddleware and I believe it's holding the response data in memory. This is causing very high memory usage for some of our endpoints that return very large (~10-20MB) r…
-
Hi,
An embargo for a DoS vector affecting the werkzeug multipart implementation expired on the 14th of Feb. I recall from following along with [this Starlite issue](https://github.com/starlite-api/…
-
Hi, using the example from the docs on how to use custom state does not increment the value:
```python
from starlite import Starlite, State, get
class MyState(State):
count: int = 0
…
-
**Describe the bug**
JWT login parameter `response_body`, doesn't use custom type encoders. Resulting in responses not having consistent schema.
**To Reproduce**
```py
from typing import Any
…
-
Hi There,
i wanted to take a look at this repo and start the project locally.
however i am running into an issue. of which im not sure if im doing it correctly.
im trying to start the applicati…
-
**Describe the bug**
Starlite raises an HTTP 500 error when trying to return a Beanie `Document`. It seems to be due to the `PydanticObjectId` type not being JSON serializable. The issue was discus…
-
**Describe the bug**
Installing starlite with `pip install starlite[jinja]` as outlined in the documentation fails, since there's no such extra defined in pyproject.toml
https://starlite-api.githu…
-
Hi all, apologies if this is answered else where in the documentation or if it is obvious. But, how do I configure starlite logging to log to a file instead of console? I would like to be able to make…