Skip to content

Commit

Permalink
🎁 fixes to unblock deploys
Browse files Browse the repository at this point in the history
Removes SaveSearchesController as it is not longer supported. Blacklight::SavedSearched was removed in v7+
Adds storage.yml, a required file to boot up in production.

ref:
- https://github.com/projectblacklight/blacklight/wiki/Saved-Searches
- projectblacklight/blacklight#1736
  • Loading branch information
Shana Moore committed Jan 8, 2024
1 parent 17c9192 commit 66d5292
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 7 deletions.
7 changes: 0 additions & 7 deletions app/controllers/saved_searches_controller.rb

This file was deleted.

34 changes: 34 additions & 0 deletions config/storage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>

local:
service: Disk
root: <%= Rails.root.join("storage") %>

# Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
# amazon:
# service: S3
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
# region: us-east-1
# bucket: your_own_bucket-<%= Rails.env %>

# Remember not to checkin your GCS keyfile to a repository
# google:
# service: GCS
# project: your_project
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
# bucket: your_own_bucket-<%= Rails.env %>

# Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
# microsoft:
# service: AzureStorage
# storage_account_name: your_account_name
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
# container: your_container_name-<%= Rails.env %>

# mirror:
# service: Mirror
# primary: local
# mirrors: [ amazon, google, microsoft ]

0 comments on commit 66d5292

Please sign in to comment.