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",
|
"host": "localhost",
|
||||||
"port": 4242,
|
"port": 4242,
|
||||||
"aeTitle": "ORTHANC",
|
"aeTitle": "ORTHANC",
|
||||||
"default": true
|
"default": true,
|
||||||
|
"server": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"host": "0.0.0.0",
|
"host": "0.0.0.0",
|
||||||
"port": 11119,
|
"port": 11112,
|
||||||
"aeTitle": "OHIFDCM",
|
"aeTitle": "OHIFDCM",
|
||||||
"default": true,
|
"default": true,
|
||||||
"server": true
|
"server": true
|
||||||
@ -31,7 +32,11 @@
|
|||||||
"public": {
|
"public": {
|
||||||
"verifyEmail": false,
|
"verifyEmail": false,
|
||||||
"ui": {
|
"ui": {
|
||||||
"studyListFunctionsEnabled": true
|
"studyListFunctionsEnabled": true,
|
||||||
|
"leftSidebarOpen": false,
|
||||||
|
"displaySetNavigationLoopOverSeries": false,
|
||||||
|
"displaySetNavigationMultipleViewports": true,
|
||||||
|
"autoPositionMeasurementsTextCallOuts": "TRLB"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user