Skip to content
Arnav Gupta edited this page Feb 5, 2018 · 2 revisions

Requirements

Setup your database for persistence

sudo -u postgres createdb qbounty-backend
sudo -u postgres createuser qbounty

Set password and give privileges

alter role qbounty with encrypted password 'qbounty';
grant all privileges on database "qbounty-backend" to qbounty;
Clone this wiki locally