You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ownCloud Web DICOM Viewer app is an extension of [ownCloud Web](https://github.com/owncloud/web) to preview DICOM files (medical images and their corresponding metadata) in the browser. The preview of the medical images is based on MIT licensed [cornerstone3D](https://github.com/cornerstonejs/cornerstone3D).
@@ -16,7 +16,29 @@ The current implementation allows to preview .dcm files and display their corres
16
16
-**Supported architectures:**\
17
17
`amd64`
18
18
19
-
## Config
19
+
## Installation
20
+
21
+
### 1. Install dependencies
22
+
23
+
```
24
+
pnpm install
25
+
```
26
+
27
+
### 2. Build extension
28
+
29
+
Build the extension using watch for development.
30
+
31
+
```
32
+
pnpm build:w
33
+
```
34
+
35
+
### 3. Load apps
36
+
37
+
We can load the app into the oCIS server in two different ways, depending on the version of oCIS:
38
+
39
+
#### 1. For oCIS 5.0.0 (Seperate extension server)
40
+
41
+
Configure the extension in `web.config.json`
20
42
21
43
```json
22
44
{
@@ -36,9 +58,18 @@ The current implementation allows to preview .dcm files and display their corres
36
58
}
37
59
]
38
60
}
39
-
61
+
40
62
```
41
63
64
+
#### 2. For oCIS >= 5.1
65
+
66
+
Copy `docker-compose.override.example.yml` to `docker-compose.override.yml`.
0 commit comments