Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dmezzogori committed Jul 21, 2023
1 parent bbf7f0b commit c8a8c4e
Show file tree
Hide file tree
Showing 4 changed files with 409 additions and 2,110 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,4 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/
.python-version
3 changes: 2 additions & 1 deletion kwik/applications/kwik.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def init_fastapi_app(self, *, api_router: APIRouter) -> FastAPI:
debug=settings.DEBUG,
on_startup=[broadcast.connect] if settings.WEBSOCKET_ENABLED else None,
on_shutdown=[broadcast.disconnect] if settings.WEBSOCKET_ENABLED else None,
docs_url=None, # disable default docs
docs_url=None, # disable default docs,
redirect_slashes=False,
)

app = self.set_middlewares(app=app)
Expand Down
Loading

0 comments on commit c8a8c4e

Please sign in to comment.