ohif-viewer/docs/latest/deployment/index.md

138 lines
4.2 KiB
Markdown
Raw Normal View History

# Deployment
2019-04-27 22:23:25 +02:00
The OHIF Viewer can be embedded in other web applications via it's [packaged
2019-04-28 18:52:10 +02:00
script source][ohif-viewer-npm], or served up as a stand-alone PWA ([progressive
2019-04-28 19:44:51 +02:00
web application][pwa-url]) by building and hosting a collection of static
assets. In either case, you will need to configure your instance of the Viewer
so that it can connect to your data source (the database or PACS that provides
the data your Viewer will display).
2019-04-27 22:23:25 +02:00
## Overview
2019-04-28 18:52:10 +02:00
Our goal is to make deployment as simple and painless as possible; however,
there is an inherent amount of complexity in customizing, optimizing, and
2019-04-28 19:44:51 +02:00
deploying web applications. If you find yourself a little lost, please don't
hesitate to [reach out for help](/help.md)
2019-04-28 17:04:27 +02:00
## Deployment Scenarios
### Embedded Viewer
The quickest and easiest way to get the OHIF Viewer up and running is to embed
2019-04-28 18:52:10 +02:00
it into an existing web application. It allows us to forego a "build step", and
add a powerful medical imaging viewer to an existing web page using only a few
include tags.
2019-04-28 17:04:27 +02:00
2019-04-28 19:44:51 +02:00
- Read more about it here: [Embedded Viewer](./recipes/embedded-viewer.md)
2019-04-28 18:52:10 +02:00
- And check out our
[live demo on CodeSandbox](https://codesandbox.io/s/lrjoo3znxm)
2019-04-28 17:04:27 +02:00
2019-04-28 18:52:10 +02:00
{% include "./_embedded-viewer-diagram.md" %}
2019-04-28 17:04:27 +02:00
2019-04-28 18:52:10 +02:00
### Stand-alone Viewer
2019-04-28 17:04:27 +02:00
2019-04-28 18:52:10 +02:00
Deploying the OHIF Viewer as a stand-alone web application provides many
2019-04-28 19:44:51 +02:00
benefits, but comes at the cost of time and complexity. Some benefits include:
_Today:_
- Leverage [extensions](/advanced/extensions.md) to drop-in powerful new
features
- Add routes and customize the viewer's workflow
- Finer control over styling and whitelabeling
_In the future:_
- The ability to package the viewer for [App Store distribution][app-store]
- Leverage `service-workers` for offline support and speed benefits from caching
2019-04-28 17:04:27 +02:00
2019-04-28 18:52:10 +02:00
#### Hosted Static Assets
2019-04-28 17:04:27 +02:00
At the end of the day, a production OHIF Viewer instance is a collection of
HTML, CSS, JS, Font Files, and Images. We "build" those files from our
`source code` with configuration specific to our project. We then make those
files publicly accessible by hosting them on a Web Server.
If you have not deployed a web application before, this may be a good time to
[reach out for help](/help.md), as these steps assume prior web development and
deployment experience.
##### Part 1 - Build Production Assets
"Building", or creating, the files you will need is the same regardless of the
web host you choose. You can find detailed instructions on how to configure and
build the OHIF Viewer in our
2019-04-30 17:56:13 +02:00
["Build for Production" guide](./recipes/build-for-production.md).
##### Part 2 - Host Your App
There are a lot of [benefits to hosting static assets][host-static-assets]
2019-04-28 20:26:03 +02:00
- AWS S3 + Cloudfront
- GCP + Cloudflare
- Azure
- Netlify (can use private repo)
- Github pages
Note: Include SSL instructions.
2019-04-28 18:52:10 +02:00
...
2019-04-28 17:04:27 +02:00
2019-04-28 18:52:10 +02:00
#### Docker
2019-04-28 17:04:27 +02:00
2019-04-28 20:26:03 +02:00
- Why Docker?
- Ship your environment
- "It works on my machine"
_Ship Archive w/ Client:_ todo
2019-04-28 17:04:27 +02:00
...
2019-04-28 19:44:51 +02:00
## Data
2019-04-28 20:26:03 +02:00
The OHIF Viewer is able to connect to any data source that implements the [DICOM
Web Standard][dicom-web-standard]. [DICOM Web][dicom-web] refers to RESTful
DICOM Services -- a recently standardized set of guidelines for exchanging
medical images and imaging metadata over the internet. Not all archives fully
support it yet, but it is gaining wider adoption.
### Configure Connection
...
### What if I don't have an imaging archive?
...
#### Making sure your archive is accessible
- CORS
- Proxy (dangers)
- Note: PACS not meant to be directly accesible from Web
#### Securing your data
- Reach out to experts
- Recipes
### What if my archive doesn't support DICOM Web?
- Mapping layer
- GraphQL?
2019-04-27 22:23:25 +02:00
<!--
Links
-->
2019-04-28 19:44:51 +02:00
<!-- prettier-ignore-start -->
2019-04-27 22:23:25 +02:00
[ohif-viewer-npm]: https://www.npmjs.com/package/ohif-viewer
[pwa-url]: https://developers.google.com/web/progressive-web-apps/
[static-assets-url]: https://www.maxcdn.com/one/visual-glossary/static-content/
2019-04-28 19:44:51 +02:00
[app-store]: https://medium.freecodecamp.org/i-built-a-pwa-and-published-it-in-3-app-stores-heres-what-i-learned-7cb3f56daf9b
2019-04-28 20:26:03 +02:00
[dicom-web-standard]: https://www.dicomstandard.org/dicomweb/
[dicom-web]: https://en.wikipedia.org/wiki/DICOMweb
[host-static-assets]: https://www.netlify.com/blog/2016/05/18/9-reasons-your-site-should-be-static/
2019-04-28 17:04:27 +02:00
2019-04-28 19:44:51 +02:00
<!-- prettier-ignore-end -->