chore: refactor

This commit is contained in:
dancingCycle 2024-02-21 13:28:20 +01:00
parent 2de571405b
commit b8425909fc
2 changed files with 1 additions and 5 deletions

View File

@ -2,7 +2,7 @@
* create a database user called `user name` with password `key`
```
CREATE USER `user name` with encrypted password 'key';
CREATE USER <user name> with encrypted password 'key';
```
* OPTION: gant user `user name` access to database `database name`

View File

@ -27,10 +27,6 @@ sudo systemctl restart postgresql
systemctl status postgresql
```
* when needed, create a database like [this](./postgres-create-db.md)
* when needed, create a user like [this](./postgres-create-user.md)
TODO: move the following description to dedicated setup files
# Allow Remote Connections