diff --git a/website/src/routes/docs/+layout.svelte b/website/src/routes/docs/+layout.svelte
index 23aa979..9647819 100644
--- a/website/src/routes/docs/+layout.svelte
+++ b/website/src/routes/docs/+layout.svelte
@@ -8,9 +8,8 @@
{ href: '/docs/installation', label: 'Installation' },
{ href: '/docs/usage', label: 'Usage' },
{ href: '/docs/configuration', label: 'Configuration' },
- { href: '/docs/providers', label: 'Providers' },
- { href: '/docs/self-hosted', label: 'Self-Hosted' },
- { href: '/docs/examples', label: 'Examples' },
+ { href: '/docs/providers', label: 'Providers' },
+ { href: '/docs/examples', label: 'Examples' },
{ href: '/docs/cli-reference', label: 'CLI Reference' },
];
diff --git a/website/src/routes/docs/getting-started/+page.svelte b/website/src/routes/docs/getting-started/+page.svelte
index 2c4c1d1..7195d0b 100644
--- a/website/src/routes/docs/getting-started/+page.svelte
+++ b/website/src/routes/docs/getting-started/+page.svelte
@@ -149,6 +149,6 @@
Usage — review modes, output formats, and configuration
Configuration — full .cora.yaml reference
Providers — setting up OpenAI, Anthropic, Groq, Ollama, and Z.AI
- Self-Hosted — running cora with local LLMs and air-gapped environments
+ CLI Reference — full command documentation
diff --git a/website/src/routes/docs/self-hosted/+page.svelte b/website/src/routes/docs/self-hosted/+page.svelte
deleted file mode 100644
index da2e109..0000000
--- a/website/src/routes/docs/self-hosted/+page.svelte
+++ /dev/null
@@ -1,217 +0,0 @@
-
cora is designed to run entirely on your infrastructure. Self-hosting gives you:
-Ollama lets you run LLMs locally. cora works with any Ollama model that supports chat completions.
- -ollama pull codellama
- Configure cora to use Ollama via environment variables:
- -Or persist the configuration in .cora.yaml:
To authenticate with Ollama (no API key needed for local use):
- -cora works seamlessly with Gitea repositories. Since cora reads your local git state directly, no Gitea integration or plugin is needed:
- -git diff output — it works with any git remote (GitHub, Gitea, GitLab, Bitbucket)
- cora review --branch main as a pipeline step
- For fully offline or air-gapped environments:
- -http://localhost:11434/v1 as the base URL
- cora is designed with privacy as a core principle:
- -You can verify this by inspecting the source code at github.com/ajianaz/cora-cli. The codebase is open source under the MIT license.
-