A computerized log sheet for DnD 5e's Adventurer's League
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.
- Run
bundle exec rake secret
- Copy output to
.env
inSECRET_KEY_BASE=
bundle exec rails s
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