Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 694 Bytes

File metadata and controls

24 lines (21 loc) · 694 Bytes

HandyShop

Build Status codecov

Configurations

Database and Environment

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