From 29c7be1e55d4b9bfa3031d7118152d35ec9bbb3a Mon Sep 17 00:00:00 2001 From: Alex Zamai Date: Fri, 11 Apr 2025 09:47:15 +0200 Subject: [PATCH] =?UTF-8?q?[typo]=20locahost=20=E2=86=92=20localhost?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/howto/managed-databases.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/howto/managed-databases.md b/docs/howto/managed-databases.md index e91d655052..745524ea5f 100644 --- a/docs/howto/managed-databases.md +++ b/docs/howto/managed-databases.md @@ -25,7 +25,7 @@ Access to a running database server is required. Add a connection string to the version: '2' servers: - engine: postgresql - uri: "postgres://locahost:5432/postgres?sslmode=disable" + uri: "postgres://localhost:5432/postgres?sslmode=disable" sql: - schema: schema.sql queries: query.sql @@ -63,7 +63,7 @@ on a per-query basis to speed up future codegen runs. Here's a minimal working c version: '2' servers: - engine: postgresql - uri: "postgres://locahost:5432/postgres?sslmode=disable" + uri: "postgres://localhost:5432/postgres?sslmode=disable" sql: - schema: schema.sql queries: query.sql @@ -89,7 +89,7 @@ to ensure the query is valid. Here's a minimal working configuration: version: '2' servers: - engine: postgresql - uri: "postgres://locahost:5432/postgres?sslmode=disable" + uri: "postgres://localhost:5432/postgres?sslmode=disable" sql: - schema: schema.sql queries: query.sql