From f5e8d9a329254c4a69defa47ca934d9ae8f41d88 Mon Sep 17 00:00:00 2001 From: giancarlo Date: Mon, 15 Apr 2024 19:19:43 +0800 Subject: [PATCH] Add authentication variables to .env file Authentication variables have been added to the .env file. This includes enabling password authentication, disabling magic link authentication, and adding --- apps/web/.env | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/web/.env b/apps/web/.env index 705468663..c11631f5e 100644 --- a/apps/web/.env +++ b/apps/web/.env @@ -13,6 +13,11 @@ NEXT_PUBLIC_DEFAULT_THEME_MODE=light NEXT_PUBLIC_THEME_COLOR="#ffffff" NEXT_PUBLIC_THEME_COLOR_DARK="#0a0a0a" +# AUTH +NEXT_PUBLIC_AUTH_PASSWORD=true +NEXT_PUBLIC_AUTH_MAGIC_LINK=false +NEXT_PUBLIC_CAPTCHA_SITE_KEY= + # BILLING NEXT_PUBLIC_BILLING_PROVIDER=stripe