From e4a78fd09c17607cce26db6844fe85cb283ca2aa Mon Sep 17 00:00:00 2001 From: kosiakkatrina <54268893+kosiakkatrina@users.noreply.github.com> Date: Mon, 27 Sep 2021 10:45:00 +0100 Subject: [PATCH] Update the readme Quickstart with more details I also had to do this before creating the db, but I'm not sure if it's just my set up: ```psql postgres CREATE ROLE "postgres-user" WITH LOGIN PASSWORD 'postgres-password'; ALTER ROLE "postgres-user" CREATEDB;``` --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index a6407ea3a..900cb6e89 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,15 @@ Pre-requisites Copy the `.env.example` to `.env` and replace the database credentials with your local postgres user credentials. +Install the dependencies +`bundle install` + Create the database `rake db:create` +Run the database migrations +`rake db:migrate` + Start the rails server ``` rails s