From bae6ecfde3ce5e67b737305afda2be894d37fe96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 10 Jan 2025 13:47:27 +0100 Subject: [PATCH] Add EDITOR_SERVER variable to env_file template This update introduces the EDITOR_SERVER variable to the env_file template. It ensures that the environment configuration now includes the editor server endpoint, improving flexibility and usability for deployments. --- templates/env_file.env | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/env_file.env b/templates/env_file.env index a24675c..57c40a2 100644 --- a/templates/env_file.env +++ b/templates/env_file.env @@ -42,3 +42,4 @@ JWT_SECRET_KEY={{ item.chill_config.jwt_secret_key }} JWT_PUBLIC_KEY={{ item.chill_config.jwt_public_key }} RABBITMQ_URL=amqp://{{ item.chill_config.rabbitmq_user }}:{{ item.chill_config.rabbitmq_password }}@rabbitmq/%2f DATABASE_URL=postgres://{{ item.chill_config.database_user }}:{{ item.chill_config.database_password }}@{% if item.add_postgres %}database:5432{% else %}{{ item.chill_config.database_host }}{% endif %}/{{ item.chill_config.database_name }}?sslmode=disable&charset=utf8&serverVersion={{ item.chill_config.database_version }} +EDITOR_SERVER={{ item.chill_config.editor_server }}