From b513ba2da561b958f4041d8f9b0640caee9fe7f9 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Mon, 21 Oct 2024 17:34:20 +0530 Subject: [PATCH] [server] [docs] Update references to outdated postgres --- server/RUNNING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/RUNNING.md b/server/RUNNING.md index 5a45b46d1f..71f02ee3c2 100644 --- a/server/RUNNING.md +++ b/server/RUNNING.md @@ -98,7 +98,7 @@ brew install go ### Install other packages ```sh -brew install postgresql@12 +brew install postgresql@15 brew install libsodium brew install pkg-config ``` @@ -112,7 +112,7 @@ brew install pkg-config On M1 macs, we additionally need to link the postgres keg. ``` -brew link postgresql@12 +brew link postgresql@15 ``` ### Init Postgres database @@ -128,7 +128,7 @@ initdb /usr/local/var/postgres ``` On M1 macs, the path to the database cluster is -`/opt/homebrew/var/postgresql@12` (instead of `/usr/local/var/postgres`). +`/opt/homebrew/var/postgresql@15` (instead of `/usr/local/var/postgres`). ### Start Postgres