A computerized log sheet for DnD 5e's Adventurer's League
Install dependencies with bundler
$ bundle installEnsure 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-devCopy .env.example as .env
$ cp ./.env.example .envCreate 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_dupesConfigure secret key for devise.
- Run
bundle exec rake secret - Copy output to
.envinSECRET_KEY_BASE=
bundle exec rails sThe 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 specTo run the specs (and view/debug them) using desktop chrome use
$ CAPYBARA_GUI=1 bundle exec rake spec