Skip to content

Commit 2edfa3e

Browse files
Deploying to gh-pages from @ litestar-org/litestar@4a43322 🚀
1 parent 31ccb3a commit 2edfa3e

30 files changed

Lines changed: 124 additions & 122 deletions

4897/_modules/litestar/handlers/base.html

Lines changed: 84 additions & 82 deletions
Large diffs are not rendered by default.

4897/_sources/benchmarks.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Methodology
1313
- Tests for the frameworks are written to make them as comparable as possible while
1414
completing the same tasks (you can see them
1515
`here <https://github.com/litestar-org/api-performance-tests/tree/main/frameworks>`__)
16-
- Each application is run using `uvicorn <https://www.uvicorn.org/>`__ with
16+
- Each application is run using `uvicorn <https://uvicorn.dev/>`__ with
1717
**one worker** and `uvloop <https://uvloop.readthedocs.io/>`__
1818
- Test data has been randomly generated and is being imported from a shared module
1919
- All frameworks are used with their "stock" configuration, i.e. without applying any

4897/_sources/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ entry-point and pass it to Litestar:
211211
212212
app = Litestar(route_handlers=[UserController])
213213
214-
To **run your application**, use an ASGI server such as `uvicorn <https://www.uvicorn.org/>`_ :
214+
To **run your application**, use an ASGI server such as `uvicorn <https://uvicorn.dev/>`_ :
215215

216216
.. code-block:: shell
217217

4897/_sources/release-notes/2.x-changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@
13301330
additional validation was added to generate a more user friendly CLI errors.
13311331

13321332
The other SSL-related flags (like password or CA) were not added (yet). See
1333-
`uvicorn CLI docs <https://www.uvicorn.org/#command-line-options>`_
1333+
`uvicorn CLI docs <https://uvicorn.dev/#command-line-options>`_
13341334

13351335
**Generating of a self-signed certificate**
13361336

4897/_sources/topics/deployment/manually-with-asgi-server.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Choosing an ASGI Server
3737
.. tab-item:: Uvicorn
3838
:sync: uvicorn
3939

40-
`Uvicorn <https://www.uvicorn.org/>`_ is an ASGI server that supports ``HTTP/1.1`` and WebSocket.
40+
`Uvicorn <https://uvicorn.dev/>`_ is an ASGI server that supports ``HTTP/1.1`` and WebSocket.
4141

4242
.. tab-item:: Hypercorn
4343
:sync: hypercorn

4897/_sources/topics/explicit_declarations.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ However, it gets tricky quickly. For example, if the same route handler would be
4949
included in a router with a path parameter with the name ``message``, the path parameter
5050
would win, and ``message`` wouldn't be a query parameter anymore.
5151

52-
This means that the inferred parameter source is context dependant.
52+
This means that the inferred parameter source is context dependent.
5353

5454
There are upsides to this, for example, one could argue that this is a practical
5555
application of the
@@ -98,7 +98,7 @@ for nuance".
9898
This is easy to write, or rather, easy to type. However, there's not much information
9999
available to a reader. Where do ``data`` and all the other parameters come from? One
100100
could infer from ``limit`` and ``page`` that they're probably query parameters, but as
101-
discussed in `Historical background`_, that could also be context dependant.
101+
discussed in `Historical background`_, that could also be context dependent.
102102

103103

104104
**Easy to read**

4897/_sources/tutorials/todo-app/0-application-basics.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install Litestar
1111
++++++++++++++++
1212

1313
To install Litestar, run ``pip install 'litestar[standard]'``. This will install Litestar
14-
as well as `uvicorn <https://www.uvicorn.org/>`_ - a web server to serve your application.
14+
as well as `uvicorn <https://uvicorn.dev/>`_ - a web server to serve your application.
1515

1616
.. note::
1717
You can use any ASGI-capable web server, but this tutorial will use - and Litestar
@@ -147,7 +147,7 @@ The last step is to actually run the application. Litestar does not include its
147147
server, but instead makes use of the
148148
`ASGI protocol <https://asgi.readthedocs.io>`_, which is a protocol Python objects can
149149
use in order to interact with application servers like
150-
`uvicorn <https://www.uvicorn.org/>`_ that actually implement the HTTP protocol and
150+
`uvicorn <https://uvicorn.dev/>`_ that actually implement the HTTP protocol and
151151
handle it for you.
152152

153153
If you installed Litestar with ``pip install 'litestar[standard]'``, this will have

4897/_sources/tutorials/todo-app/3-assembling-the-app.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ receives data of a ``TodoItem`` the same way as the ``POST`` handler.
7474

7575
An instance of ``Litestar`` is created, including the previously defined route handlers.
7676
This app can now be served using an ASGI server like
77-
`uvicorn <https://www.uvicorn.org/>`_, which can be conveniently done using Litestar's
77+
`uvicorn <https://uvicorn.dev/>`_, which can be conveniently done using Litestar's
7878
CLI by executing the ``litestar run`` command.
7979

8080

4897/_sources/usage/applications.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Startup and Shutdown
3232
You can pass a list of :term:`callables <python:callable>` - either sync or async functions, methods, or class instances
3333
- to the :paramref:`~litestar.app.Litestar.on_startup` / :paramref:`~litestar.app.Litestar.on_shutdown`
3434
:term:`kwargs <argument>` of the :class:`app <litestar.app.Litestar>` instance. Those will be called in
35-
order, once the ASGI server such as `uvicorn <https://www.uvicorn.org/>`_,
35+
order, once the ASGI server such as `uvicorn <https://uvicorn.dev/>`_,
3636
`Hypercorn <https://hypercorn.readthedocs.io/en/latest/#/>`_, `Granian <https://github.com/emmett-framework/granian/>`_,
3737
`Daphne <https://github.com/django/daphne/>`_, etc. emits the respective event.
3838

4897/_sources/usage/cli.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CLI
22
===
33

44
.. |uvicorn| replace:: uvicorn
5-
.. _uvicorn: https://www.uvicorn.org/
5+
.. _uvicorn: https://uvicorn.dev/
66

77
Litestar provides a convenient command line interface (CLI) for running and managing Litestar applications. The CLI is
88
powered by `click <https://click.palletsprojects.com/>`_, `rich <https://rich.readthedocs.io>`_,

0 commit comments

Comments
 (0)