diff options
author | Henry Jameson <me@hjkos.com> | 2017-08-16 00:20:02 +0300 |
---|---|---|
committer | Henry Jameson <me@hjkos.com> | 2017-08-16 00:20:02 +0300 |
commit | bd40613d7b00d2de4e0332b04ac799463828b9bf (patch) | |
tree | b3ed5154954007a7c914e4c2b69e7e055a9ef3fe /README.md | |
parent | d1863d6db720208f0bf07229b8e1d89890deaac5 (diff) | |
download | pleroma-bd40613d7b00d2de4e0332b04ac799463828b9bf.tar.gz pleroma-bd40613d7b00d2de4e0332b04ac799463828b9bf.zip |
formatting
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -32,10 +32,10 @@ NodeJS is available as `nodejs` package on Debian. `apt install nodejs`. Debian * There, enter following: ```sql - ALTER USER postgres with encrypted password '[PASSWORD]'; + ALTER USER postgres with encrypted password '<PASSWORD>'; ``` - where [PASSWORD] is any string, no need to manually encrypt it - postgres will encrypt it automatically for you. + where `<PASSWORD>` is any string, no need to manually encrypt it - postgres will encrypt it automatically for you. * 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 the 9.6 version) and change the line: @@ -60,7 +60,7 @@ NodeJS is available as `nodejs` package on Debian. `apt install nodejs`. Debian ```sql \c pleroma_dev CREATE user pleroma; - ALTER user pleroma with encrypted password '[your password]'; + ALTER user pleroma with encrypted password '<your password>'; GRANT ALL ON ALL tables IN SCHEMA public TO pleroma; GRANT ALL ON ALL sequences IN SCHEMA public TO pleroma; ``` |