Skip to content

Commit 6cbca2e

Browse files
committed
docs: tidy up postgres grant
1 parent dfa62e2 commit 6cbca2e

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,18 @@ brew install go-task
5757
task # will show you the available tasks
5858
```
5959

60+
Make sure you create a databae for your project and `GRANT` the necessary privileges to the `postgres` user.
6061

61-
- Postgres (GRANT PRIVILEGES)
62-
GRANT is used to define access privileges on the database object lie the table, foreign table, column , view. schema etc.
63-
64-
```bash
65-
grant ALL on database MY_DB to group MY_GROUP;
62+
```psql
63+
CREATE DATABASE django;
64+
GRANT ALL PRIVILEGES ON DATABASE django TO postgres;
6665
```
6766

68-
69-
67+
### Render Workflows
7068

71-
- Render
69+
You will require the Render CLI to assist with your developing Render Workflows, install it with the handy `brew` command below.
7270

7371
```bash
74-
brew update
7572
brew install render
7673
```
7774

0 commit comments

Comments
 (0)