Skip to content

Commit fa905be

Browse files
authored
docs: remove double quotes (") from DB_HOST environment variable (#2514)
1 parent 9da8bb6 commit fa905be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/extending-seerr/database-config.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If your PostgreSQL server is configured to accept TCP connections, you can speci
3030

3131
```dotenv
3232
DB_TYPE=postgres # Which DB engine to use, either sqlite or postgres. The default is sqlite.
33-
DB_HOST="localhost" # (optional) The host (URL) of the database. The default is "localhost".
33+
DB_HOST=localhost # (optional) The host (URL) of the database. The default is "localhost".
3434
DB_PORT="5432" # (optional) The port to connect to. The default is "5432".
3535
DB_USER= # (required) Username used to connect to the database.
3636
DB_PASS= # (required) Password of the user used to connect to the database.

0 commit comments

Comments
 (0)