From 7404c651d1dc73e22ee345ecb6219517beff1f15 Mon Sep 17 00:00:00 2001 From: Song Luar Date: Sun, 22 Feb 2026 01:35:29 +0800 Subject: [PATCH] Update generate-env.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit langfuse-web container has their internval validation for the email variable, hence the change ``` ⎿  langfuse-web-1 | ❌ Invalid environment variables: { LANGFUSE_INIT_US ER_EMAIL: [ 'Invalid email' ] } ``` --- scripts/generate-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-env.sh b/scripts/generate-env.sh index 63ebed6..68f9138 100755 --- a/scripts/generate-env.sh +++ b/scripts/generate-env.sh @@ -56,7 +56,7 @@ echo "" read -p "Email address: " USER_EMAIL if [ -z "$USER_EMAIL" ]; then - USER_EMAIL="admin@localhost" + USER_EMAIL="admin@localhost.local" echo -e "${YELLOW}Using default: $USER_EMAIL${NC}" fi