From fa905be0026c91d55e3fe632d9110ed679455761 Mon Sep 17 00:00:00 2001 From: nova-api Date: Thu, 19 Feb 2026 08:56:25 +0000 Subject: [PATCH] docs: remove double quotes (") from DB_HOST environment variable (#2514) --- docs/extending-seerr/database-config.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extending-seerr/database-config.mdx b/docs/extending-seerr/database-config.mdx index e2003b19..59684161 100644 --- a/docs/extending-seerr/database-config.mdx +++ b/docs/extending-seerr/database-config.mdx @@ -30,7 +30,7 @@ If your PostgreSQL server is configured to accept TCP connections, you can speci ```dotenv DB_TYPE=postgres # Which DB engine to use, either sqlite or postgres. The default is sqlite. -DB_HOST="localhost" # (optional) The host (URL) of the database. The default is "localhost". +DB_HOST=localhost # (optional) The host (URL) of the database. The default is "localhost". DB_PORT="5432" # (optional) The port to connect to. The default is "5432". DB_USER= # (required) Username used to connect to the database. DB_PASS= # (required) Password of the user used to connect to the database.