adriangb / xpresso

A composable Python ASGI web framework
https://xpresso-api.dev/
MIT License
178 stars 4 forks source link

feat: allow setting root_path #37

Closed adriangb closed 2 years ago

adriangb commented 2 years ago

How would this interact with OpenAPI? With routing? Probably worth referring to FastAPI

sm-Fifteen commented 2 years ago

FastAPI adds the root_path in the OpenAPI server list since tiangolo/fastapi#1596, making it so all paths in the documentation are to be understood as being relative to that URL.

adriangb commented 2 years ago

Yup I think we'll want to do the same thing here, thank you for linking the original discussion