aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2017-08-16 00:19:08 +0300
committerHenry Jameson <me@hjkos.com>2017-08-16 00:19:08 +0300
commitd1863d6db720208f0bf07229b8e1d89890deaac5 (patch)
treeb2ce4e70006aa28abb84db6a9cac001525fd2666 /README.md
parent47a72c04f92477aff4954d208a102bddcb69f8ba (diff)
downloadpleroma-d1863d6db720208f0bf07229b8e1d89890deaac5.tar.gz
these are not html tags, silly markdown
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5f6e91d06..e91a7c3cc 100644
--- a/README.md
+++ b/README.md
@@ -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;
```