summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2017-08-15 23:54:15 +0300
committerHenry Jameson <me@hjkos.com>2017-08-15 23:54:15 +0300
commit3e2f6895c36d35182c3ab834756a8f1ffa1a9530 (patch)
treead0787db867c088b715c2acb30daabde2eb3795f
parentc6941676ba9546e8ec451f5f289122a26aa7a070 (diff)
downloadpleroma-3e2f6895c36d35182c3ab834756a8f1ffa1a9530.tar.gz
pleroma-3e2f6895c36d35182c3ab834756a8f1ffa1a9530.zip
formatting
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 72a6fa835..d849b5812 100644
--- a/README.md
+++ b/README.md
@@ -33,13 +33,17 @@ NodeJS is available as `nodejs` package on debian. `apt install nodejs`. Debian
* Replace password in file `config/dev.exs` with password you supplied in previous step (look for line like `password: "postgres"`)
* edit `/etc/postgresql/9.6/main/pg_hba.conf` (Assuming you have 9.6 version) and change the line:
+
```
local all postgres peer
```
+
to
+
```
local all postgres md5
```
+
don't forget to revert it in the later step so you won't have to enter password when accessing psql console.
* Create and update your database with `mix ecto.create && mix ecto.migrate`. If it gives errors, try running again, this is a known issue.
* Undo changes you made in `/etc/postgresql/9.6/main/pg_hba.conf` (replace `md5` with `peer`)