Skip to content

Commit

Permalink
Add login permission
Browse files Browse the repository at this point in the history
  • Loading branch information
ccunningham101 committed Nov 17, 2023
1 parent 7d4db71 commit ac17b42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DEVELOPERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ psql -U postgres -h localhost -c "CREATE DATABASE retractobot"
On Linux, you'll need to create the user with relevant permissions:
```
psql -U postgres -h localhost -c "
CREATE ROLE retractobot PASSWORD 'PASSWORD HERE' NOSUPERUSER CREATEDB;
CREATE ROLE retractobot PASSWORD 'PASSWORD HERE' NOSUPERUSER CREATEDB LOGIN;
GRANT ALL PRIVILEGES on database retractobot to retractobot;
"
```
Expand Down Expand Up @@ -183,7 +183,7 @@ elsewhere for checking in different email clients.
#### Do initial live batch

This is the first pilot send of real mails. We do the run for the first 100
authors (ordered by AUID).
authors (ordered by AUID).

This command doesn't do any logging, as it is the raw internal command
(so we can set limit).
Expand Down

0 comments on commit ac17b42

Please sign in to comment.