UNPKG

@researchdatabox/sails-hook-redbox-omero

Version:

A Sails hook to add functionality to redbox that provisions OMERO

37 lines (33 loc) 1.12 kB
/** * Production environment settings * * This file can include shared settings for a production environment, * such as API keys or remote database passwords. If you're using * a version control solution for your Sails app, this file will * be committed to your repository unless you add it to your .gitignore * file. If your repository will be publicly viewable, don't add * any private information to this file! * */ module.exports = { /*************************************************************************** * Set the default database connection for models in the production * * environment (see config/connections.js and config/models.js ) * ***************************************************************************/ workspaces:{ provisionerUser: 'admin', parentRecord: 'rdmp', omero: { parentRecord: 'rdmp', formName: 'omero-1.0-draft', workflowStage: 'draft', appName: 'omero', appId: 'omero-test', recordType: 'omero', host: '', domain: '', serverId: '1', defaultGroupId: 1 } } };