Sha256: 5003669764c7db5a69dcdd3432b7921d5687db8bf3e4635c7a166fa4911de91f
Contents?: true
Size: 859 Bytes
Versions: 37
Compression:
Stored size: 859 Bytes
Contents
# = jetty_path key # each environment can have a jetty_path with absolute or relative # (to app root) path to a jetty/solr install. This is used # by the rake tasks that start up solr automatically for testing # and by rake solr:marc:index. # # jetty_path is not used by a running Blacklight application # at all. In general you do NOT need to deploy solr in Jetty, you can deploy it # however you want. # jetty_path is only required for rake tasks that need to know # how to start up solr, generally for automated testing. development: adapter: solr url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8983/solr/blacklight-core" %> test: &test adapter: solr url: <%= "http://127.0.0.1:#{ENV['TEST_JETTY_PORT'] || 8888}/solr/blacklight-core" %> production: adapter: solr url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8983/solr/blacklight-core" %>
Version data entries
37 entries across 37 versions & 2 rubygems