From d303035922a0b44ff83e9acd54e10fa60536c148 Mon Sep 17 00:00:00 2001 From: jack-richards <58331725+jack-richards@users.noreply.github.com> Date: Tue, 21 Nov 2023 23:33:16 +0000 Subject: [PATCH] Update INITIALIZE-DB.md --- INITIALIZE-DB.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/INITIALIZE-DB.md b/INITIALIZE-DB.md index b774d8c..0509201 100644 --- a/INITIALIZE-DB.md +++ b/INITIALIZE-DB.md @@ -3,7 +3,8 @@ If you want to use the default database settings as provided in the config.json 1. Download Postgres and make sure it's service is enabled and running. 2. Use psql to login as the 'postgres' user. -3. Type CREATE DATABASE "bptf-autopricer"; and hit enter. -4. Type \c "bptf-autopricer" and hit enter -5. Type \i path/to/initalize-db.sql and hit enter -6. The database should now be ready for the application to use. + - If it asks for a password, make sure you note it down as you will need to set the password in `config.json` once you are done here. +4. Type CREATE DATABASE "bptf-autopricer"; and hit enter. +5. Type \c "bptf-autopricer" and hit enter +6. Type \i path/to/initalize-db.sql and hit enter +7. The database should now be ready for the application to use.