Ariel-Thomas / adventurers-league-log

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

  • On mac, install via homebrew using brew cask install chromedriver.
  • On linux, install via apt-get install 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

About

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


Languages

Language:Ruby 51.9%Language:HTML 45.7%Language:CSS 2.0%Language:JavaScript 0.3%Language:Shell 0.1%Language:Dockerfile 0.0%