From 22c724058a67280957c9e7a6216f7a20dbf659a6 Mon Sep 17 00:00:00 2001 From: Mikko Nieminen Date: Mon, 1 Jul 2024 13:06:56 +0200 Subject: [PATCH] add celery install docs (#1373) --- docs/source/dev_core_install.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/source/dev_core_install.rst b/docs/source/dev_core_install.rst index e411801d..baeae331 100644 --- a/docs/source/dev_core_install.rst +++ b/docs/source/dev_core_install.rst @@ -60,6 +60,13 @@ Example of the database URL variable as set within an ``.env`` file: DATABASE_URL=postgres://your-db:your-db@127.0.0.1/your-db +Asynchronous Celery tasks require running a Redis server. For development, you +can install it with the following script: + +.. code-block:: console + + $ sudo utility/install_redis.sh + Repository and Environment Setup ================================