Create a PostgreSQL user:
bundle install
bundle exec figaro install
sudo -u postgres psql
CREATE ROLE handyshop WITH LOGIN PASSWORD 'your_password' CREATEDB;Set the environment variable HANDYSHOP_DATABASE_PASSWORD in config/application.yml
HANDYSHOP_DATABASE_PASSWORD: "your_password"
Create the databases and run migrations
rake db:create
rake db:migrate