From a35e8d35299a2c301ec91f3e2decdaf06738bafa Mon Sep 17 00:00:00 2001
From: nitin <142569587+ehconitin@users.noreply.github.com>
Date: Tue, 22 Jul 2025 20:06:02 +0530
Subject: [PATCH] Add a note regarding config var documentation (#13345)
https://discord.com/channels/1130383047699738754/1397138267144720474
before:
after:
---
.../src/content/developers/self-hosting/setup.mdx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/twenty-website/src/content/developers/self-hosting/setup.mdx b/packages/twenty-website/src/content/developers/self-hosting/setup.mdx
index f3e79cd9b..f6e58ece0 100644
--- a/packages/twenty-website/src/content/developers/self-hosting/setup.mdx
+++ b/packages/twenty-website/src/content/developers/self-hosting/setup.mdx
@@ -44,10 +44,10 @@ IS_CONFIG_VARIABLES_IN_DB_ENABLED=true # default

-**Some configuration requires setting in .env:** Infrastructure like database connections (`PG_DATABASE_URL`), server URLs (`SERVER_URL`), and app secrets (`APP_SECRET`) can only be configured via `.env` file.
-Those configurations are marked as `isEnvOnly: true` in the source code.
+Each variable is documented with descriptions in your admin panel at **Settings → Admin Panel → Configuration Variables**.
+Some infrastructure settings like database connections (`PG_DATABASE_URL`), server URLs (`SERVER_URL`), and app secrets (`APP_SECRET`) can only be configured via `.env` file.
-[See complete list of environment-only variables →](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts)
+[Complete technical reference →](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts)
## 2. Environment-Only Configuration