We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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;