Added orthanc script for both DIMSE and DICOMWeb
This commit is contained in:
parent
2333276e96
commit
6ff8a57f50
13
OHIFViewer/bin/orthanc.sh
Executable file
13
OHIFViewer/bin/orthanc.sh
Executable 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"
|
||||
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user