We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to mount jupyvers APIs into another fastapi app? e.g, I have something like:
app = FastAPI()
And I started the server with gunicorn server:app..., is there a way to just mount all jupyverse in the app without starting it with the asphalt?
gunicorn server:app...
the current way I'm doing is:
# Create the app. app = App() jupyverse_app = App(app.api, "jupyverse") frontend_config = FrontendConfig() auth_config = _AuthConfig() auth = auth_factory(jupyverse_app, auth_config, frontend_config)
But feels like too hacking.
The text was updated successfully, but these errors were encountered:
I don't think it's possible, but since you're also using FastAPI you could register your handlers using asphalt-web.
Sorry, something went wrong.
No branches or pull requests
Problem
Is there a way to mount jupyvers APIs into another fastapi app?
e.g,
I have something like:
And I started the server with
gunicorn server:app...
, is there a way to just mount all jupyverse in the app without starting it with the asphalt?Proposed Solution
the current way I'm doing is:
But feels like too hacking.
Additional context
The text was updated successfully, but these errors were encountered: