From 50b6a11d3b422491e3c736397c63fc412c298945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Fri, 16 Aug 2024 09:46:01 +0200 Subject: [PATCH] doc: document SQL package extra --- doc/tutorial/install.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/tutorial/install.rst b/doc/tutorial/install.rst index 83a314ea..1d898a81 100644 --- a/doc/tutorial/install.rst +++ b/doc/tutorial/install.rst @@ -28,9 +28,16 @@ Canaille provides different package options: - `front` provides all the things needed to produce the user interface; - `oidc` provides the dependencies to perform OAuth2/OIDC authentication; - `ldap` provides the dependencies to enable the LDAP backend; +- `sql` provides the dependencies to enable the Postgresql or Mysql backends; - `sentry` provides sentry integration to watch Canaille exceptions; - `all` provides all the extras above. +They can be installed with: + +.. code-block:: bash + + pip install "canaille[front,oidc,sql]" + Configure =========