From 22fb4acf12362ae7a96c64223e0057a27ab9a432 Mon Sep 17 00:00:00 2001 From: Martin <2672413+gitviola@users.noreply.github.com> Date: Thu, 26 Feb 2026 20:58:56 +0100 Subject: [PATCH] fix: Add SELF_HOSTED variable to .env.template (#288) Without this env var I get the Trial expired screen after upgrading to version 2. --- self-hosting/.env.template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/self-hosting/.env.template b/self-hosting/.env.template index c681a6fd..17dfcb38 100644 --- a/self-hosting/.env.template +++ b/self-hosting/.env.template @@ -1,5 +1,6 @@ NODE_ENV="production" VITE_SELF_HOSTED="true" +SELF_HOSTED="true" BATCH_SIZE="5000" BATCH_INTERVAL="10000" ALLOW_REGISTRATION="false" @@ -13,4 +14,4 @@ DASHBOARD_URL="$DASHBOARD_URL" API_URL="$API_URL" COOKIE_SECRET="$COOKIE_SECRET" EMAIL_SENDER="$EMAIL_SENDER" -RESEND_API_KEY="$RESEND_API_KEY" \ No newline at end of file +RESEND_API_KEY="$RESEND_API_KEY"