From 3f903d9fe21388644a491720364041694797e0e5 Mon Sep 17 00:00:00 2001 From: Anastasia Gradova Date: Fri, 8 Dec 2023 12:39:57 -0700 Subject: [PATCH 1/2] updated README for PSQL bug --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7ee97d704..74342c787 100644 --- a/README.md +++ b/README.md @@ -203,6 +203,8 @@ brew install postgresql@15 _NOTE: This project currently works with PostgreSQL version 15.x; version 12.x is currently used in our hosted environments._ +_NOTE: If you have a pre-existing instance of PSQL install because of another product like PGAdmin. Homebrew installs Postgres without a password. This may create a scenario where you cannot use PSQL to login to the database as PSQL for PGAdmin will require a password. It is recommended that you remove PGAdmin before this step as PSQL will be installed with Postgres and allow you to login without a password._ + You'll now need to modify (or create, if it doesn't already exist) the `$PATH` environment variable to include the PostgreSQL binaries. Open the file you have worked with before to adjust your shell environment with the previous steps and From 96a3a8bdc6a6183d66ddb898cdc78ddd6f9c1378 Mon Sep 17 00:00:00 2001 From: Anastasia Gradova <108748167+anagradova@users.noreply.github.com> Date: Mon, 18 Dec 2023 13:22:03 -0700 Subject: [PATCH 2/2] Update README.md Co-authored-by: Carlo Costino --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74342c787..94aea0c41 100644 --- a/README.md +++ b/README.md @@ -203,7 +203,7 @@ brew install postgresql@15 _NOTE: This project currently works with PostgreSQL version 15.x; version 12.x is currently used in our hosted environments._ -_NOTE: If you have a pre-existing instance of PSQL install because of another product like PGAdmin. Homebrew installs Postgres without a password. This may create a scenario where you cannot use PSQL to login to the database as PSQL for PGAdmin will require a password. It is recommended that you remove PGAdmin before this step as PSQL will be installed with Postgres and allow you to login without a password._ +_NOTE: If you have a pre-existing instance of PSQL installed because of another product like PGAdmin, your database configuration may differ from the instructions above, which uses Homebrew to install and configure PostgreSQL. If this is the case for you, you may have to either account for slightly different user permissions with the database, or uninstall PGAdmin and/or PostgreSQL itself, and reinstall it with Homebrew to follow the steps above._ You'll now need to modify (or create, if it doesn't already exist) the `$PATH` environment variable to include the PostgreSQL binaries. Open the file you have