aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2017-08-15 23:52:29 +0300
committerHenry Jameson <me@hjkos.com>2017-08-15 23:52:29 +0300
commitc6941676ba9546e8ec451f5f289122a26aa7a070 (patch)
treecc593ccd2c3a049736129d129ebcb66b84b82374 /README.md
parent7b2bded06f8602707ab0f76d1898998943d2ea5c (diff)
downloadpleroma-c6941676ba9546e8ec451f5f289122a26aa7a070.tar.gz
Revert "formatting"
This reverts commit 7b2bded06f8602707ab0f76d1898998943d2ea5c.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index d0aeaebd0..72a6fa835 100644
--- a/README.md
+++ b/README.md
@@ -46,6 +46,7 @@ NodeJS is available as `nodejs` package on debian. `apt install nodejs`. Debian
* You most likely don't want having some application accessing database as superuser, so you need to create separate user for that. Right now it must be done manually (issue #27).
* Open psql shell as postgres user: (as root) `su postgres -c psql`
* Create a new PostgreSQL user:
+
```sql
\c pleroma_dev
CREATE user pleroma;
@@ -53,6 +54,7 @@ NodeJS is available as `nodejs` package on debian. `apt install nodejs`. Debian
GRANT ALL ON ALL tables IN SCHEMA public TO pleroma;
GRANT ALL ON ALL sequences IN SCHEMA public TO pleroma;
```
+
* Again, change password in `config/dev.exs`, and change user to `"pleroma"` (line like `username: "postgres"`)
### Some additional configuration