This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
forked from IUBLibTech/phydo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes needed for deploying to demoable host
* Updates preservation gem. * Adds gem therubyracer. * Do not load rake tasks for 'dev' and 'test' environments when in production. * Applies patch for active_fedora-noid. This is a tmp measure for getting curation_concerns 1.6.3 to run in production without having to upgrade to 1.7.x yet. See samvera-deprecated/curation_concerns#1061. * Adds config for 'production' enviornment in config/role_map.yml. Without some config for 'production' env, we get errors from hydra-access-controls. * Add solr_wrapper and fcrepo_wrapper to bundle (not just :development and :test groups). Also adds config for both in .solr_wrapper.production and .fcrepo_wrapper.production. NOTE: We're going to use them in production to get a demo up quickly. We will want to come back to this when building out a more robust production env. * Adds results of running Preservation gem install generator. * StorageControllerBehavior Module is defined without a namespace, but was trying to be included with `HydraDAM::StorageControllerBehavior`. * Removes `require 'pry'` everywhere. It's not part of the production bundle. Require it in development as needed, but please don't commit it. Closes HDM-800.
- Loading branch information
Showing
17 changed files
with
83 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Place any default configuration for solr_wrapper here | ||
port: 8984 | ||
enable_jms: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,6 @@ | |
!/log/.keep | ||
/tmp | ||
|
||
/jetty | ||
/fcrepo4-data | ||
|
||
/coverage/ | ||
.coveralls.yml | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.3.1 | ||
2.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Place any default configuration for solr_wrapper here | ||
# port: 8983 | ||
collection: | ||
dir: solr/config/ | ||
name: phydo-production |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module CurationConcerns | ||
class FileSetsController < ApplicationController | ||
include CurationConcerns::FileSetsControllerBehavior | ||
include HydraDAM::StorageControllerBehavior | ||
include ::StorageControllerBehavior | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# TODO | ||
# This is part of a back port of a patch introduced in curation_concerns ~> | ||
# 1.7.x. This should not be required after upgrading to cuation_concerns ~> | ||
# 1.7.x. See https://github.com/projecthydra/curation_concerns/pull/1061/files | ||
require 'active_fedora/noid' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
require 'pry' | ||
|
||
module HydraDAM | ||
class StorageProxyClient | ||
attr_accessor :host, :port, :store, :cache, :api_prefix, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
require 'xml_validator' | ||
require 'pry' | ||
|
||
|
||
module PBCore | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.