diff --git a/README.rst b/README.rst index 04503518..31bd15e1 100644 --- a/README.rst +++ b/README.rst @@ -138,6 +138,10 @@ Choose one of the following: - `Application example (single container) `_ - `Application example (multiple containers) `_ - `Decoupled packages example (multiple containers) `_ +- `Django example `_ +- `Flask example `_ +- `Aiohttp example `_ +- `Sanic example `_ Tutorials --------- diff --git a/docs/examples/aiohttp.rst b/docs/examples/aiohttp.rst index 1a884102..a9446fe8 100644 --- a/docs/examples/aiohttp.rst +++ b/docs/examples/aiohttp.rst @@ -1,3 +1,5 @@ +.. _aiohttp-example: + Aiohttp example =============== diff --git a/docs/examples/django.rst b/docs/examples/django.rst index 8c36c6be..15fa0520 100644 --- a/docs/examples/django.rst +++ b/docs/examples/django.rst @@ -1,3 +1,5 @@ +.. _django-example: + Django example ============== diff --git a/docs/examples/flask.rst b/docs/examples/flask.rst index b0da80c9..a1a312b2 100644 --- a/docs/examples/flask.rst +++ b/docs/examples/flask.rst @@ -1,3 +1,5 @@ +.. _flask-example: + Flask example ============= diff --git a/docs/examples/sanic.rst b/docs/examples/sanic.rst index 5b9a34c4..1727128f 100644 --- a/docs/examples/sanic.rst +++ b/docs/examples/sanic.rst @@ -1,3 +1,5 @@ +.. _sanic-example: + Sanic example ============== diff --git a/docs/introduction/di_in_python.rst b/docs/introduction/di_in_python.rst index cf5d9bb0..43d2f867 100644 --- a/docs/introduction/di_in_python.rst +++ b/docs/introduction/di_in_python.rst @@ -289,6 +289,10 @@ Choose one of the following as a next step: - :ref:`application-single-container` - :ref:`application-multiple-containers` - :ref:`decoupled-packages` + - :ref:`django-example` + - :ref:`flask-example` + - :ref:`aiohttp-example` + - :ref:`sanic-example` - Pass the tutorials: - :ref:`flask-tutorial` - :ref:`aiohttp-tutorial`