Skip to content

projectblacklight/blacklight

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blacklight

CI Workflow

Branches

  • The main branch is currently where we do new development for the upcoming 9.0 release.
  • The 8.x series is on the release-8.x branch
  • The 7.x series is on the release-7.x branch
  • The 6.x series is on the release-6.x branch

Description

Blacklight is an open source Solr user interface discovery platform. You can use Blacklight to enable searching and browsing of your collections. Blacklight uses the Apache Solr search engine to search full text and/or metadata. Blacklight has a highly configurable Ruby on Rails front-end. Blacklight was originally developed at the University of Virginia Library and is made public under an Apache 2.0 license.

Installation

Add Blacklight to your Gemfile:

gem "blacklight"

Run the install generator which will copy over some initial templates, migrations, routes, and configuration:

rails generate blacklight:install

Documentation, Information and Support

Browser Compatibility

Blacklight assumes a modern browser with support for Baseline 2023. This means we explicitly do not support Internet Explorer.

Dependencies

Blacklight aims to support the currently supported versions of Ruby and the supported versions of Ruby on Rails. We aim to keep our test configuration up to date with these supported versions.

Contributing Code

Code contributions are always welcome, instructions for contributing can be found at CONTRIBUTING.md.

Configuring Apache Solr

You'll also want some information about how Blacklight expects Apache Solr to run, which you can find in Solr Configuration

Building the javascript

The javascript includes some derivative combination files that are built at release time, that can be used by some javascript pipelines. The derivatives are placed at app/assets/javascripts/blacklight, and files there should not be edited by hand.

When any of the javascript components in the gem are changed, you may have to rebuild these derivative files.

  1. Install npm
  2. run bundle exec rake build:npm (just runs npm install to download dependencies and npm run prepare to build the bundle)

Releasing versions

You always need to release both the rubygem and npm package simultaneously. For more information, see wiki

Summary of technical steps:

  1. Make sure ./package.json and ./VERSION files have correct and matching versions.
  2. Release ruby gem with bundle exec rake release
  3. Release npm package
  4. Build derivative products included in release with bundle exec rake build:npm
  5. Publish with npm publish.

Using the javascript

Blacklight ships with Javascript that can be compiled either by Webpacker or by Sprockets. To use Webpacker see the directions at https://github.com/projectblacklight/blacklight/wiki/Using-Webpacker-to-compile-javascript-assets

If you prefer to use Sprockets, simply run the install generator, which will run the assets generator. For details see https://github.com/projectblacklight/blacklight/wiki/Using-Sprockets-to-compile-javascript-assets