From 41b4c056a73e3cc211bb37cf052d60c82c98f7f0 Mon Sep 17 00:00:00 2001 From: moisses89 <7888669+moisses89@users.noreply.github.com> Date: Wed, 4 Oct 2023 10:52:49 +0200 Subject: [PATCH] Add rabbitmq configuration --- container_env_files/txs.env | 3 +++ 1 file changed, 3 insertions(+) diff --git a/container_env_files/txs.env b/container_env_files/txs.env index 3830b32..47ce4cc 100644 --- a/container_env_files/txs.env +++ b/container_env_files/txs.env @@ -9,3 +9,6 @@ CELERY_BROKER_URL=amqp://guest:guest@txs-rabbitmq/ DJANGO_ALLOWED_HOSTS="*" FORCE_SCRIPT_NAME=/txs/ CSRF_TRUSTED_ORIGINS="http://localhost:8000" +EVENTS_QUEUE_URL=amqp://general-rabbitmq:5672 +EVENTS_QUEUE_ASYNC_CONNECTION=True +EVENTS_QUEUE_EXCHANGE_NAME="safe-transaction-service-events"