From 9ee331f79bee6f5c88e703b9bd2d277bf891f7e1 Mon Sep 17 00:00:00 2001 From: Lalit Aditya Julapalli Date: Wed, 25 Mar 2026 02:38:43 -0400 Subject: [PATCH] docs(self-hosting): fix database name in connection URI (#448) --- docs/v2/contributing/self-hosting.mdx | 3 ++- docs/v3/contributing/self-hosting.mdx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/v2/contributing/self-hosting.mdx b/docs/v2/contributing/self-hosting.mdx index 3e5e1e42..5ad3e5a5 100644 --- a/docs/v2/contributing/self-hosting.mdx +++ b/docs/v2/contributing/self-hosting.mdx @@ -59,7 +59,8 @@ OPENAI_API_KEY=your-openai-api-key ANTHROPIC_API_KEY=your-anthropic-api-key # Database will be created automatically by Docker -DB_CONNECTION_URI=postgresql+psycopg://postgres:postgres@database:5432/honcho +DB_CONNECTION_URI=postgresql+psycopg://postgres:postgres@database:5432/postgres + # Disable auth for local development AUTH_USE_AUTH=false diff --git a/docs/v3/contributing/self-hosting.mdx b/docs/v3/contributing/self-hosting.mdx index b6f47e94..4dc0957c 100644 --- a/docs/v3/contributing/self-hosting.mdx +++ b/docs/v3/contributing/self-hosting.mdx @@ -59,7 +59,7 @@ OPENAI_API_KEY=your-openai-api-key ANTHROPIC_API_KEY=your-anthropic-api-key # Database will be created automatically by Docker -DB_CONNECTION_URI=postgresql+psycopg://postgres:postgres@database:5432/honcho +DB_CONNECTION_URI=postgresql+psycopg://postgres:postgres@database:5432/postgres # Disable auth for local development AUTH_USE_AUTH=false