Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themerdark
 files: [
     “dist/shrine.bundle.js”
//   “shrine.controller.js”,
//   “i2b2_msgs.js”,
//   “shrine.plugin.js”
  ],

You will 'll need to add the line “dist"dist/shrine.bundle.js” and remove or comment out the other three js files. js" under the files section as well as "wrapperHtmlFile: "./js-shrine/shrine.plugin.html"" under the readApprovedURL parameter.

Here's the whole cell_config_data.js file for reference:

Code Block
collapsabletrue
languagebash
themerdark
{
  files: [
    "dist/shrine.bundle.js"
  ],

  css: [],
  config: {
    // additional configuration variables that are set by the system
    name: "SHRINE Cell",
    description: "The SHRINE cell...",
    category: ["core","cell","shrine"],
    newTopicURL: "https://your_shrine_url:6443/steward/client/index.html",
    readApprovedURL:"https://your_shrine_url:6443/shrine/rest/i2b2/request",
    wrapperHtmlFile: "./js-shrine/shrine.plugin.html"
  }
}



Configure support for client-side https Proxies (i.e, UCSD's infrastructure)

...