Skip to content

Commit 64b053e

Browse files
committed
initial blacklight app
1 parent e34f54a commit 64b053e

File tree

107 files changed

+9690
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+9690
-0
lines changed

.browserslistrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# See https://git-scm.com/docs/gitattributes for more about git attribute files.
2+
3+
# Mark the database schema as having been generated.
4+
db/schema.rb linguist-generated
5+
6+
# Mark the yarn lockfile as having been generated.
7+
yarn.lock linguist-generated
8+
9+
# Mark any vendored files as having been vendored.
10+
vendor/* linguist-vendored

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-*
13+
/solr
14+
/var_solr
15+
16+
# Ignore all logfiles and tempfiles.
17+
/log/*
18+
/tmp/*
19+
!/log/.keep
20+
!/tmp/.keep
21+
22+
# Ignore pidfiles, but keep the directory.
23+
/tmp/pids/*
24+
!/tmp/pids/
25+
!/tmp/pids/.keep
26+
27+
# Ignore uploaded files in development.
28+
/storage/*
29+
!/storage/.keep
30+
31+
/public/assets
32+
.byebug_history
33+
34+
# Ignore master key for decrypting credentials and more.
35+
/config/master.key
36+
37+
/public/packs
38+
/public/packs-test
39+
/node_modules
40+
/yarn-error.log
41+
yarn-debug.log*
42+
.yarn-integrity

.solr_wrapper.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Place any default configuration for solr_wrapper here
2+
# port: 8983
3+
collection:
4+
dir: solr/conf/
5+
name: pdf_core

Gemfile

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.7.1'
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
7+
gem 'rails', '~> 6.1.4', '>= 6.1.4.1'
8+
# Use sqlite3 as the database for Active Record
9+
gem 'sqlite3', '~> 1.4'
10+
# Use Puma as the app server
11+
gem 'puma', '~> 5.0'
12+
# Use SCSS for stylesheets
13+
gem 'sass-rails', '>= 6'
14+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
15+
gem 'webpacker', '~> 5.0'
16+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
17+
gem 'turbolinks', '~> 5'
18+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
19+
gem 'jbuilder', '~> 2.7'
20+
# Use Redis adapter to run Action Cable in production
21+
# gem 'redis', '~> 4.0'
22+
# Use Active Model has_secure_password
23+
# gem 'bcrypt', '~> 3.1.7'
24+
25+
# Use Active Storage variant
26+
# gem 'image_processing', '~> 1.2'
27+
28+
# Reduces boot times through caching; required in config/boot.rb
29+
gem 'bootsnap', '>= 1.4.4', require: false
30+
31+
gem 'blacklight', '>= 6.1'
32+
33+
group :development, :test do
34+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
35+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
36+
end
37+
38+
group :development do
39+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
40+
gem 'web-console', '>= 4.1.0'
41+
# Display performance information such as SQL time and flame graphs for each request in your browser.
42+
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
43+
gem 'rack-mini-profiler', '~> 2.0'
44+
end
45+
46+
group :test do
47+
# Adds support for Capybara system testing and selenium driver
48+
gem 'capybara', '>= 3.26'
49+
gem 'selenium-webdriver'
50+
# Easy installation and use of web drivers to run system tests with browsers
51+
gem 'webdrivers'
52+
end
53+
54+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
55+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
56+
57+
group :development, :test do
58+
gem 'solr_wrapper', '>= 0.3'
59+
end
60+
61+
group :development, :test do
62+
gem 'solr_wrapper', '>= 0.3'
63+
end
64+
gem 'rsolr', '>= 1.0', '< 3'
65+
gem 'bootstrap', '~> 4.0'
66+
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
67+
gem 'jquery-rails'
68+
gem 'devise'
69+
gem 'devise-guests', '~> 0.6'

0 commit comments

Comments
 (0)