gem install rails
rails -v
# Rails 4.2.5
rails new culture_vulture
cd culture_vulture
Add to the Gemfile:
gem 'europeana-blacklight', '~> 0.3', '< 0.4'
From http://labs.europeana.eu/api/
bundle install
bundle exec rails generate blacklight:install --devise
# This will ask if you want to overwrite some files; just say yes in a new app.
bundle exec rails generate europeana:blacklight:install YOUR_API_KEY
bundle exec rake db:migrate
Review the generated CatalogController
and adjust the default configuration
to your preferences.
bundle exec rails server