Ariel-Thomas / adventurers-league-log

A computerized log sheet for DnD 5e's Adventurer's League
55 stars 21 forks source link

Adventurer's League Log

A computerized log sheet for DnD 5e's Adventurer's League

Getting Started

Install dependencies with bundler

$ bundle install

Ensure postgres is installed, and a postgres/postgres superuser is created. You may also need development libraries on Linux.

$ sudo apt-get update
$ sudo apt-get install libpq-dev

Copy .env.example as .env

$ cp ./.env.example .env

Create database, run migrations and seed data.

$ bundle exec rake db:create db:migrate
$ bundle exec phil_columns seed
$ bundle exec rake adventure_catalog:load
$ bundle exec rake adventure_catalog:clean_dupes

Configure secret key for [devise]().

  1. Run bundle exec rake secret
  2. Copy output to .env in SECRET_KEY_BASE=

Run

bundle exec rails s

Tests

The specs require chromedriver.

To run the specs using headless chrome (default) use

$ bundle exec rake spec

To run the specs (and view/debug them) using desktop chrome use

$ CAPYBARA_GUI=1 bundle exec rake spec