Added orthanc script for both DIMSE and DICOMWeb

This commit is contained in:
Emanuel F. Oliveira 2017-02-22 17:42:22 -03:00 committed by Eloízio Salgado
parent 2333276e96
commit 6ff8a57f50
2 changed files with 21 additions and 3 deletions

13
OHIFViewer/bin/orthanc.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
declare config='../config/orthancDICOMWeb.json'
if [ $# -gt 0 ]; then
if [ "$1" = '--dimse' ]; then
config="${config%/*}/orthancDIMSE.json"
[ -f "$config" ] && echo "DIMSE config file selected: $config"
fi
fi
echo 'Starting Meteor server...'
METEOR_PACKAGE_DIRS="../Packages" meteor --settings "$config"

View File

@ -14,11 +14,12 @@
"host": "localhost",
"port": 4242,
"aeTitle": "ORTHANC",
"default": true
"default": true,
"server": false
},
{
"host": "0.0.0.0",
"port": 11119,
"port": 11112,
"aeTitle": "OHIFDCM",
"default": true,
"server": true
@ -31,7 +32,11 @@
"public": {
"verifyEmail": false,
"ui": {
"studyListFunctionsEnabled": true
"studyListFunctionsEnabled": true,
"leftSidebarOpen": false,
"displaySetNavigationLoopOverSeries": false,
"displaySetNavigationMultipleViewports": true,
"autoPositionMeasurementsTextCallOuts": "TRLB"
}
}
}