Fix the installation documentation of postgresql. Fixes #2845.

This commit is contained in:
Jyri-Petteri Paloposki 2024-07-19 14:34:54 +03:00
parent e1c5fbbbc2
commit a9a978c1f8

View file

@ -142,7 +142,7 @@ You need to create a database and database-user to use with Tracks. For this, yo
#### PostgreSQL #### PostgreSQL
$ sudo -u postgres psql $ sudo -u postgres psql
postgres=# CREATE USER tracks WITH ENCRYPTED PASSWORD 'password-goes-here'; postgres=# CREATE ROLE tracks WITH LOGIN NOSUPERUSER INHERIT CREATEDB CREATEROLE NOREPLICATION PASSWORD 'password-goes-here';
postgres=# CREATE DATABASE tracks OWNER=tracks; postgres=# CREATE DATABASE tracks OWNER=tracks;
### Install dependencies ### Install dependencies