Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Commit

Permalink
Issue 640 (#55)
Browse files Browse the repository at this point in the history
* Adding UUID to gemini's schema on install

* Setting config here instead of hook_install() in the core islandora module

* Adding UUID to gemini's schema on install

* Setting config here instead of hook_install() in the core islandora module

* Fixing api-x install issue

* Changing up feature deploy order

* No longer pulling from my branches
  • Loading branch information
dannylamb authored and whikloj committed Nov 22, 2017
1 parent fd27507 commit 2bdc720
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 8 deletions.
5 changes: 5 additions & 0 deletions configs/drupal/filehash.settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
algos:
sha1: sha1
md5: '0'
sha256: '0'
dedupe: false
26 changes: 26 additions & 0 deletions configs/drupal/rest.resource.entity.media.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
langcode: en
status: true
dependencies:
enforced:
module:
- islandora
module:
- basic_auth
- jsonld
- jwt
- media_entity
- serialization
- user
id: entity.media
plugin_id: 'entity:media'
granularity: resource
configuration:
methods:
- GET
formats:
- jsonld
- json
authentication:
- basic_auth
- jwt_auth
- cookie
21 changes: 21 additions & 0 deletions configs/drupal/rest.resource.entity.node.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
langcode: en
status: true
dependencies:
module:
- basic_auth
- jsonld
- jwt
- node
- user
id: entity.node
plugin_id: 'entity:node'
granularity: resource
configuration:
methods:
- GET
formats:
- jsonld
authentication:
- basic_auth
- jwt_auth
- cookie
1 change: 1 addition & 0 deletions configs/gemini.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
create database gemini;
CREATE TABLE gemini.Gemini (
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
uuid VARCHAR(36) NOT NULL UNIQUE,
drupal VARCHAR(2048) NOT NULL UNIQUE,
fedora VARCHAR(2048) NOT NULL UNIQUE
) ENGINE=InnoDB;
10 changes: 2 additions & 8 deletions configs/karaf/alpaca.script
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,10 @@ config:property-set -p org.fcrepo.apix.registry.http timeout.socket.ms 1000
feature:repo-add file:/home/ubuntu/Alpaca/karaf/build/resources/main/features.xml
feature:repo-add mvn:org.fcrepo.apix/fcrepo-api-x-karaf/LATEST/xml/features

feature:install fcrepo-service-camel
feature:install islandora-http-client
feature:install fcrepo-api-x

feature:install islandora-connector-broadcast

feature:install islandora-indexing-triplestore

feature:install islandora-indexing-fcrepo

feature:install islandora-http-client

feature:install fcrepo-api-x

feature:install fcrepo-indexing-triplestore

0 comments on commit 2bdc720

Please sign in to comment.