diff --git a/docs/getting-started-section/advanced-environment-config.md b/docs/getting-started-section/advanced-environment-config.md
new file mode 100644
index 0000000..07e5d39
--- /dev/null
+++ b/docs/getting-started-section/advanced-environment-config.md
@@ -0,0 +1,133 @@
+---
+sidebar_position: 4
+title: Advanced Environment
+sidebar_label : Advanced Environment
+id: advanced-environment-config
+---
+
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+#
Advanced Environment
Beta only
+
+Voiden supports a YAML-based **Advanced Environment Configuration** system — a dedicated way to manage environment values across profiles, with a clear separation between what's shareable and what stays local.
+
+---
+
+## Overview
+
+Environment values are split into two distinct categories:
+
+- **Public values** — safe to commit to version control (base URLs, feature flags, non-sensitive defaults)
+- **Private values** — stays local to your machine, never committed (API keys, tokens, passwords)
+
+Each category lives in its own YAML file. They hold different keys for different purposes — not two versions of the same data.
+
+---
+
+## Opening the Environment Panel
+
+You can open the environment panel in two ways:
+
+- Click the **No Environment** button in the top navbar, next to the project name
+- Use the keyboard shortcut:
+
+
+
+
+| Action | Shortcut |
+|---|---|
+| Open Environment Panel | `⌘ Cmd + ⌥ Option + E` |
+
+
+
+
+| Action | Shortcut |
+|---|---|
+| Open Environment Panel | `Alt + Ctrl + E` |
+
+
+
+
+---
+
+## Setting Up YAML Configuration
+
+Once the environment dialog is open:
+
+**1.** At the bottom of the dialog, click **Edit Environment and Profile** in the footer.
+
+
+
+**2.** A new tab will open — this is the YAML environment editor where you can add your public and private values and manage profiles.
+
+
+
+---
+
+## Default Configuration
+
+When no profile is active, Voiden looks for files in this order:
+
+| Priority | File | Purpose |
+|---|---|---|
+| 1 | `env-public.yaml` | Shared, non-sensitive values |
+| 2 | `env-private.yaml` | Sensitive, local-only values |
+| 3 | `.env` | Legacy fallback if no YAML files are found |
+
+If neither YAML file is present, Voiden falls back to `.env` automatically — so existing projects work out of the box with no migration required.
+
+### Example
+
+
+
+
+```yaml
+baseUrl: https://api.example.com
+timeout: 5000
+featureFlags:
+ newDashboard: true
+```
+
+
+
+
+```yaml
+apiKey: sk-your-secret-key-here
+authToken: eyJhbGciOiJIUzI1NiIs...
+```
+
+
+
+
+---
+
+## Profiles
+
+Profiles let you maintain multiple named environment configurations — for example, `staging`, `production`, or `local-dev` — each with their own public and private files.
+
+
+
+### Switching Profiles
+
+Open the environment panel and select your desired profile from the dialog.
+
+
+
+---
+
+## What to Commit
+
+| File | Commit to Git? |
+|---|---|
+| `env-public.yaml` | Yes |
+| `env-private.yaml` | **No** — add to `.gitignore` |
+| `env-{profile}-public.yaml` | Yes |
+| `env-{profile}-private.yaml` | **No** — add to `.gitignore` |
+
+A good `.gitignore` rule to cover all private files:
+
+```
+env-*-private.yaml
+env-private.yaml
+```
diff --git a/sidebars.ts b/sidebars.ts
index 6b928ae..78c545b 100644
--- a/sidebars.ts
+++ b/sidebars.ts
@@ -117,6 +117,11 @@ const sidebars: SidebarsConfig = {
"core-features-section/variables/environment-variables",
"core-features-section/variables/runtime-variables",
],
+ },
+ {
+ type: 'doc',
+ id: 'getting-started-section/advanced-environment-config',
+ label: 'Advanced Environment Configuration',
},
{
type: "html",
diff --git a/static/img/geetingstarted/advance-env-selector.png b/static/img/geetingstarted/advance-env-selector.png
new file mode 100644
index 0000000..68981c3
Binary files /dev/null and b/static/img/geetingstarted/advance-env-selector.png differ
diff --git a/static/img/geetingstarted/advance-env.png b/static/img/geetingstarted/advance-env.png
new file mode 100644
index 0000000..a760d55
Binary files /dev/null and b/static/img/geetingstarted/advance-env.png differ
diff --git a/static/img/geetingstarted/env-profile.png b/static/img/geetingstarted/env-profile.png
new file mode 100644
index 0000000..e44c611
Binary files /dev/null and b/static/img/geetingstarted/env-profile.png differ
diff --git a/static/img/geetingstarted/env-selector.png b/static/img/geetingstarted/env-selector.png
new file mode 100644
index 0000000..68981c3
Binary files /dev/null and b/static/img/geetingstarted/env-selector.png differ
diff --git a/static/img/geetingstarted/env-setup.png b/static/img/geetingstarted/env-setup.png
new file mode 100644
index 0000000..cf7a4fd
Binary files /dev/null and b/static/img/geetingstarted/env-setup.png differ