-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #456 from sanger/stevieing-patch-2
Update README.md
- Loading branch information
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|