Skip to content

Commit

Permalink
Merge pull request #456 from sanger/stevieing-patch-2
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
stevieing authored Feb 6, 2024
2 parents 19a5031 + baa351e commit e0784f1
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,24 @@ The following tools are required for development:
brew link postgresql --force
```

[email protected] is used in prod, since it is not supported any more, installing the latest version for development should work.
[email protected] is used in production.
[email protected] is used in training.
[email protected] is used in UAT.

Create the development database and user using a RDBMS GUI or by running this query in a client:

```shell
psql postgres
```

Create a role for postgres and grant login permissions:

```sql
create role postgres LOGIN;
```

Create the database:

```sql
create database baracoda_dev;
grant all privileges on database baracoda_dev to postgres;
Expand Down

0 comments on commit e0784f1

Please sign in to comment.