-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into double_combo
* main: Prep 5.0.0.rc3 Set valkyrie models as default in Hyrax.config (#6715) Enable valkyrie and disable noid in new application config Define ::Collection and ::FileSet when absent in app Update app generation docs Set default ch12n_tool from ENV['CH12N_TOOL'] Provide Lando config and use .env for dev config Update app generation to produce a valkyrie hyrax app Set valkyrie models as default in Hyrax.config
- Loading branch information
Showing
19 changed files
with
326 additions
and
105 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
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 @@ | ||
# frozen_string_literal: true | ||
|
||
# Provide plain collection model if not defined by the application. | ||
# Needed until Hyrax internals do not assume its existence. | ||
class ::Collection < Hyrax.config.collection_class; end unless '::Collection'.safe_constantize |
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 @@ | ||
# frozen_string_literal: true | ||
|
||
# Provide plain file set model if not defined by the application. | ||
# Needed until Hyrax internals do not assume its existence. | ||
class ::FileSet < Hyrax.config.file_set_class; end unless '::FileSet'.safe_constantize |
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
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,9 @@ | ||
CH12N_TOOL=fits_servlet | ||
DATABASE_URL=postgresql://postgres@localhost:5437/hyrax-dev?pool=5 | ||
FCREPO_URL=http://fedoraAdmin:fedoraAdmin@fcrepo:8989/fcrepo/rest | ||
FITS_SERVLET_URL=http://localhost:8085/fits | ||
HYRAX_ACTIVE_JOB_QUEUE=async | ||
REDIS_URL=redis://localhost:6384 | ||
SOLR_URL=http://localhost:8988/solr/hyrax-dev | ||
VALKYRIE_METADATA_ADAPTER=pg_metadata | ||
VALKYRIE_STORAGE_ADAPTER=versioned_disk_storage |
Oops, something went wrong.