From a5b51dc09b6878fe732ee89169848362e21021f9 Mon Sep 17 00:00:00 2001 From: nkhar Date: Fri, 1 Mar 2024 16:15:18 +0400 Subject: [PATCH] docs: Fixed typo in database_url [:post] instead of [:port] (#6505) --- packages/types/src/common/config-module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/common/config-module.ts b/packages/types/src/common/config-module.ts index 03e7c3e18d..f900d8af11 100644 --- a/packages/types/src/common/config-module.ts +++ b/packages/types/src/common/config-module.ts @@ -246,7 +246,7 @@ export type ProjectConfigOptions = { * - `[user]`: (required) your PostgreSQL username. If not specified, the system's username is used by default. The database user that you use must have create privileges. If you're using the `postgres` superuser, then it should have these privileges by default. Otherwise, make sure to grant your user create privileges. You can learn how to do that in [PostgreSQL's documentation](https://www.postgresql.org/docs/current/ddl-priv.html). * - `[:password]`: an optional password for the user. When provided, make sure to put `:` before the password. * - `[host]`: (required) your PostgreSQL host. When run locally, it should be `localhost`. - * - `[:post]`: an optional port that the PostgreSQL server is listening on. By default, it's `5432`. When provided, make sure to put `:` before the port. + * - `[:port]`: an optional port that the PostgreSQL server is listening on. By default, it's `5432`. When provided, make sure to put `:` before the port. * - `[dbname]`: (required) the name of the database. * * You can learn more about the connection URL format in [PostgreSQL’s documentation](https://www.postgresql.org/docs/current/libpq-connect.html).