-
Is this possible? If not could it be :)
```python
admin_app = Starlette(
routes=[
Route("/", ...),
],
middleware=[
Middleware(MiddlewareA),
),
],
)
…
-
The OpenAPI Controller doesn't have a built-in way to select which UI will be served at the root path and defaults to Redoc.
https://github.com/starlite-api/starlite/blob/main/starlite/openapi/cont…
-
Providing I am using it correctly?
```python
from starlette.middleware.sessions import SessionMiddleware
app = Starlite(
debug=True,
route_handlers=[base_router],
cors_config=COR…
-
Starlite has several potentially optional dependencies: `pydantic-factories` for generating examples in OpenAPI schema, `pyyaml` for `/openapi.yaml` path and—of course—`requests` for testing. If we de…
-
Thought I'd have a little play with Starlite as it seems nice.
`https://starlite-api.github.io/starlite/usage/1-routers-and-controllers/#registering-routes`
```python
# controller
from starlit…
-
Hello,
First I want to thanks all for this great new framework.
I would like to implement a Starlite asgi template for [Piccolo ORM](https://github.com/piccolo-orm). Piccolo ORM is an easy-to-use as…
-
How can this be achieved with the current way the template config is used?
```python
templates = Jinja2Templates(directory="templates")
templates.env.globals[’flashed_messages’] = flashed_message…
-
In the minimal example: https://starlite-api.github.io/starlite/#minimal-example
The Controller (my_app/controllers/user.py) imports the model with
```
from my_app.models import User
```
Th…
-
```
What steps will reproduce the problem?
1. run default template set
2. review "to" output - cfreturn is misspelled in init()
sample corrected file attached.
```
Original issue reported on code.…