From 810117af3336ce2b74fdb8727600feeb5f3ac965 Mon Sep 17 00:00:00 2001 From: swve Date: Sat, 27 May 2023 17:32:21 +0200 Subject: [PATCH] fix: use new env files values --- .../self-hosting/organization-hosting-modes.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/technical-docs/self-hosting/organization-hosting-modes.mdx b/pages/technical-docs/self-hosting/organization-hosting-modes.mdx index 29d2360..26e5047 100644 --- a/pages/technical-docs/self-hosting/organization-hosting-modes.mdx +++ b/pages/technical-docs/self-hosting/organization-hosting-modes.mdx @@ -21,8 +21,8 @@ When using a Single Organization Setup you should refer your Organization's `slu ### Frontend Config ```bash filename="front/.env" {1-2} -NEXT_PUBLIC_LEARNHOUSE_SELF_HOSTED=true -NEXT_PUBLIC_LEARNHOUSE_DEFAULT_ORG=myorg +NEXT_PUBLIC_LEARNHOUSE_MULTI_ORG=false +NEXT_PUBLIC_LEARNHOUSE_DEFAULT_ORG=defaultorg ``` ## Multi Organization setup @@ -30,5 +30,5 @@ NEXT_PUBLIC_LEARNHOUSE_DEFAULT_ORG=myorg ### Frontend Config ```bash filename="front/.env" {1-2} -NEXT_PUBLIC_LEARNHOUSE_SELF_HOSTED=false +NEXT_PUBLIC_LEARNHOUSE_MULTI_ORG=true ```