-
Notifications
You must be signed in to change notification settings - Fork 257
Quickstart
Blacklight is a Ruby on Rails Engine plugin, meaning it provides a small application that runs inside an existing Ruby on Rails project.
This Quickstart will walk you through installing Blacklight and Solr, and indexing a sample set of records. If you want information about configuring Blacklight to use an existing Solr index with your data in it, see the Developing Your Application section of the wiki.
To get started with Blacklight, first install Ruby and install Rails, if you don't have it installed already. You'll need Ruby 1.9 or higher, and Rails 3.2 or higher.
To run Solr, you'll also need Java installed.
You should have Ruby 2.2 or greater installed.
$ ruby --version
ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin14]
Blacklight works with Rails 4.2 and Rails 5.x, although we strongly encourage you to use Rails 5.
$ rails --version
Rails 5.0.0.1
$ java -version
java version "1.8.0_77"
Java(TM) SE Runtime Environment (build 1.8.0_77-b03)
Java HotSpot(TM) 64-Bit Server VM (build 25.77-b03, mixed mode)
The output will vary, but you need to make sure you have version 1.8 or higher. If you don't have the required version, or if the java command is not found, download and install the latest version of the JDK from Oracle at http://www.oracle.com/technetwork/java/javase/downloads/index.html.
$ mkdir projects
$ cd projects
$ rails new search_app -m https://raw.github.com/projectblacklight/blacklight/master/template.demo.rb
create
create README.rdoc
create Rakefile
create config.ru
create .gitignore
create Gemfile
create app
create app/assets/javascripts/application.js
create app/assets/stylesheets/application.css
create app/controllers/application_controller.rb
create app/helpers/application_helper.rb
create app/views/layouts/application.html.erb
create app/assets/images/.keep
create app/mailers/.keep
create app/models/.keep
create app/controllers/concerns/.keep
.
.
.
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled
gem is installed.
$ cd search_app
When you run the Rails generator for a new application, you can pass in the name of a file of template commands to be run after the base generator runs. The template file above runs through steps 2-5 of the 'Hard Way' below.
-
Create a new, blank Rails application
$ rails new my_new_blacklightapp $ cd my_new_blacklightapp ...
-
Append these lines to your application's
Gemfile
gem 'blacklight', "~> 6.0" gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
Especially if you are running on Linux, you may have to add
gem 'therubyracer'
to your gemfile, to get a Javascript runtime needed by the asset pipeline.then, update the bundle
$ bundle install
-
Install blacklight using Devise for user authentication:
$ rails generate blacklight:install --devise --marc --jettywrapper
Including
--devise
will also generate devise-based Users into your application. If you would prefer to integrate with an alternative user authentication provider, see the User Authentication documentation.Including
--marc
will also generateblacklight-marc
into your application, which adds library-specific functionality out-of-the-box. -
Run your database migrations to create Blacklight's database tables:
$ rake db:migrate
-
For the initial install of Blacklight you may need to download Jetty by running before starting it:
$ rake jetty:clean
-
Make sure your Solr server is running. If you installed the Blacklight using the
--jettywrapper
option, you can start the Jetty/Solr server using:$ rake jetty:start
You should be able to navigate to Solr at http://localhost:8983/solr/#/blacklight-core/query
-
Index some data. You can index test the MARC records provided with Blacklight by running:
$ rake solr:marc:index_test_data
Depending on the version of Solr you're using, you may see a warning that can be safely ignored:
Warning: Specifying binary request handling from a Solr Server that doesn't support it. Enable it in the solrconfig file for that server.
-
Start up your application
$ rails server
Visit the catalog at http://localhost:3000/catalog.
You should see the Blacklight interface with 30 MARC records for testing. Additional MARC records are available from the blacklight-data repository. These can be ingested into Solr using SolrMarc,
$ rake solr:marc:index MARC_FILE=(path to file)
Note: To view your newly indexed data in Solr, you must check the "edismax" option at the bottom of the query interface in the Solr Admin, or add the following to the query URL: &defType=edismax
See Configuring and Customizing Blacklight for information about how to customize the Blacklight user interface, search experience, and more.