* modified * new files in existing extensions/libraries/modes * fixed bugs and tests * Clean up * fix: viewport display fixed * Fixed configs for deployment * Removed unnecessary files and functions * Fixed default HP module * Added white labelling * Fixed hash routing * Removed unnecessary routers Co-authored-by: Alireza Sedghi <ar.sedghi@gmail.com>
28 lines
800 B
JavaScript
28 lines
800 B
JavaScript
window.config = {
|
|
routerBasename: '/',
|
|
showStudyList: true,
|
|
extensions: [],
|
|
modes: [],
|
|
dataSources: [
|
|
{
|
|
friendlyName: 'DCM4CHEE Server',
|
|
namespace: 'org.ohif.default.dataSourcesModule.dicomweb',
|
|
sourceName: 'dicomweb',
|
|
configuration: {
|
|
name: 'DCM4CHEE',
|
|
wadoUriRoot: 'http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado',
|
|
qidoRoot: 'http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs',
|
|
wadoRoot: 'http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs',
|
|
qidoSupportsIncludeField: true,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
requestOptions: {
|
|
auth: 'admin:admin',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
studyListFunctionsEnabled: true,
|
|
defaultDataSourceName: 'dicomweb',
|
|
};
|