comparison OrthancServer/Resources/Configuration.json @ 5080:d7274e43ea7c attach-custom-data

allow plugins to store a customData in the Attachments table to e.g. store custom paths without requiring an external DB
author Alain Mazy <am@osimis.io>
date Thu, 08 Sep 2022 17:42:08 +0200
parents e95fadefeb72
children 8279eaab0d1d
comparison
equal deleted inserted replaced
5079:4366b4c41441 5080:d7274e43ea7c
8 "Name" : "MyOrthanc", 8 "Name" : "MyOrthanc",
9 9
10 // Path to the directory that holds the heavyweight files (i.e. the 10 // Path to the directory that holds the heavyweight files (i.e. the
11 // raw DICOM instances). Backslashes must be either escaped by 11 // raw DICOM instances). Backslashes must be either escaped by
12 // doubling them, or replaced by forward slashes "/". 12 // doubling them, or replaced by forward slashes "/".
13 // If a relative path is provided, it is relative to the configuration
14 // file path. It is advised to provide an absolute path.
13 "StorageDirectory" : "OrthancStorage", 15 "StorageDirectory" : "OrthancStorage",
14 16
15 // Path to the directory that holds the SQLite index (if unset, the 17 // Path to the directory that holds the SQLite index (if unset, the
16 // value of StorageDirectory is used). This index could be stored on 18 // value of StorageDirectory is used). This index could be stored on
17 // a RAM-drive or a SSD device for performance reasons. 19 // a RAM-drive or a SSD device for performance reasons.
20 // If a relative path is provided, it is relative to the configuration
21 // file path. It is advised to provide an absolute path.
18 "IndexDirectory" : "OrthancStorage", 22 "IndexDirectory" : "OrthancStorage",
19 23
20 // Path to the directory where Orthanc stores its large temporary 24 // Path to the directory where Orthanc stores its large temporary
21 // files. The content of this folder can be safely deleted once 25 // files. The content of this folder can be safely deleted once
22 // Orthanc is stopped. The folder must exist. The corresponding 26 // Orthanc is stopped. The folder must exist. The corresponding