From 52d26fab27a88671354cfa0bcc70e0a064dd77cc Mon Sep 17 00:00:00 2001 From: Aman Dalmia Date: Wed, 31 Mar 2021 11:20:02 +0530 Subject: [PATCH] FIX: added line for createdb --- docs/INSTALLATION.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 8ca6023e..3aa58f67 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -18,7 +18,11 @@ Plio backend uses Postgres SQL database. Use the instructions below to set up th ```sh psql ``` - - You should be inside the PostgreSQL shell + If you get an error saying `error: psql: error: FATAL: database "{USER_NAME}" does not exist`, run the following command before entering `psql`: + ```sh + createdb + ``` + - If everything works correctly, you should be inside the PostgreSQL shell 2. Windows