Draft
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4390 +/- ##
==========================================
- Coverage 97.93% 97.79% -0.15%
==========================================
Files 319 320 +1
Lines 15586 15614 +28
Branches 1726 1731 +5
==========================================
+ Hits 15264 15269 +5
- Misses 184 207 +23
Partials 138 138 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
Documentation preview will be available shortly at https://litestar-org.github.io/litestar-docs-preview/4390 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add a
shellcommand to drop into an interactive console. The console namespace is preloaded with the app, and can be customised by plugins. For example, advanced-alchemy could provide its config or a SQLAlchemy session by implementingpopulate_repl_namespacein itsCLIPlugin.Multi-REPL support
pythonpython -m asyncio(requires Python >= 3.13, since earlier versions to not allow customisation of the repl startup)IPythonThe REPL can be selected by passing a value to
--repl, e.g.litestar shell --repl=asyncio. If not value provided it will try to automatically select the best suited REPL:IPythonif installedasyncioif >= Python 3.13