From 0a43883fb1cdeddd5aadd576adddea401cd0c9d3 Mon Sep 17 00:00:00 2001 From: Val Alexander Date: Fri, 19 Jun 2026 03:18:04 -0500 Subject: [PATCH] docs: document NEXT_PUBLIC_BASE_URL in .env.example NEXT_PUBLIC_BASE_URL is read in app/layout.tsx to build the absolute Open Graph / Twitter card image URLs but was previously undocumented. Add it to .env.example (optional; defaults to https://salem.opencoven.ai). Co-Authored-By: Claude Opus 4.8 (1M context) --- .env.example | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.env.example b/.env.example index ce3f8e6..898c8fb 100644 --- a/.env.example +++ b/.env.example @@ -61,3 +61,11 @@ GITHUB_WEBHOOK_SECRET=your_github_webhook_secret # https://salem.opencoven.ai. # ----------------------------------------------------------------------------- ALLOWED_ORIGINS=https://docs.opencoven.ai,https://opencoven.ai,https://salem.opencoven.ai + +# ----------------------------------------------------------------------------- +# PUBLIC BASE URL (optional) +# Absolute origin of this deployment, used only to build Open Graph / Twitter +# card image URLs in the page metadata. Not used by the chat API itself. +# Defaults to https://salem.opencoven.ai. +# ----------------------------------------------------------------------------- +NEXT_PUBLIC_BASE_URL=https://salem.opencoven.ai