From 2fe9b4e55e3598c819cdcf15da933485b60b8f98 Mon Sep 17 00:00:00 2001 From: Claus-Peter Huebner Date: Wed, 20 Sep 2023 17:01:25 +0200 Subject: [PATCH] changed CONFIG.VERSION distributable in .env.template for deployment --- backend/.env.template | 3 ++- dht-node/.env.template | 3 ++- federation/.env.template | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/backend/.env.template b/backend/.env.template index 06bf81088..e79122368 100644 --- a/backend/.env.template +++ b/backend/.env.template @@ -1,4 +1,5 @@ -CONFIG_VERSION=$BACKEND_CONFIG_VERSION +# must match the CONFIG_VERSION.EXPECTED definition in scr/config/index.ts +CONFIG_VERSION=v20.2023-09-19 # Server JWT_SECRET=$JWT_SECRET diff --git a/dht-node/.env.template b/dht-node/.env.template index a7603c15a..1278f61be 100644 --- a/dht-node/.env.template +++ b/dht-node/.env.template @@ -1,4 +1,5 @@ -CONFIG_VERSION=$FEDERATION_DHT_CONFIG_VERSION +# must match the CONFIG_VERSION.EXPECTED definition in scr/config/index.ts +CONFIG_VERSION=v3.2023-04-26 # Database DB_HOST=localhost diff --git a/federation/.env.template b/federation/.env.template index 295c3c480..e6ac8ad7d 100644 --- a/federation/.env.template +++ b/federation/.env.template @@ -1,4 +1,5 @@ -CONFIG_VERSION=$FEDERATION_CONFIG_VERSION +# must match the CONFIG_VERSION.EXPECTED definition in scr/config/index.ts +CONFIG_VERSION=v2.2023-08-24 LOG_LEVEL=$LOG_LEVEL # this is set fix to false, because it is important for 'production' environments. only set to true if a graphql-playground should be in use