From 4eaa3ee07642c36c434081e6bc4acfe0c8599598 Mon Sep 17 00:00:00 2001 From: KeisukeYamashita <19yamashita15@gmail.com> Date: Wed, 11 Dec 2024 20:14:59 +0100 Subject: [PATCH] fix(web): add missing `brand` in config file Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com> --- web/Dockerfile | 1 + web/docker/reearth_config.json.template | 1 + 2 files changed, 2 insertions(+) diff --git a/web/Dockerfile b/web/Dockerfile index db1e04a67..a897bbacd 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -40,6 +40,7 @@ ENV REEARTH_API=null ENV REEARTH_AUTH0_AUDIENCE=null ENV REEARTH_AUTH0_CLIENT_ID=null ENV REEARTH_AUTH0_DOMAIN=null +ENV REEARTH_BRAND=null ENV REEARTH_CESIUM_ION_ACCESS_TOKEN=null ENV REEARTH_CLOUD_API=null ENV REEARTH_CURRENT_TOS=null diff --git a/web/docker/reearth_config.json.template b/web/docker/reearth_config.json.template index fedbb43db..99e7ecfde 100644 --- a/web/docker/reearth_config.json.template +++ b/web/docker/reearth_config.json.template @@ -3,6 +3,7 @@ "auth0Audience": ${REEARTH_AUTH0_AUDIENCE}, "auth0ClientId": ${REEARTH_AUTH0_CLIENT_ID}, "auth0Domain": ${REEARTH_AUTH0_DOMAIN}, + "brand": ${REEARTH_BRAND}, "cesiumIonAccessToken": ${REEARTH_CESIUM_ION_ACCESS_TOKEN}, "cloudApi": ${REEARTH_CLOUD_API}, "currentTos": ${REEARTH_CURRENT_TOS},