From 977088786678934cba6a9855f74add7ac15b1e82 Mon Sep 17 00:00:00 2001 From: Michael Knopke Date: Wed, 30 Sep 2020 17:39:39 +0200 Subject: [PATCH] update version --- README.md | 75 ++++++++++++++++++++++++++-------------------------- package.json | 4 +-- 2 files changed, 40 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index b3ab731..802e317 100644 --- a/README.md +++ b/README.md @@ -13,60 +13,61 @@ An easy to use PACS with DICOMWEB and DIMSE service support ## Setup Instructions - npm -* install in empty directory -```npm install dicomweb-pacs``` +* install in empty directory: + ```npm init -y``` + ```npm install dicomweb-pacs``` -* update config file located in: -```./node_modules/dicomweb-pacs/config``` +* update config file located in: + ```./node_modules/dicomweb-pacs/config``` -* run: -```npx dicomweb-pacs``` +* start pacs: + ```npx dicomweb-pacs``` ## Setup Instructions - source -* clone repository and install dependencies -```npm install``` +* clone repository and install dependencies + ```npm install``` -* update config file located in: -```./config``` +* update config file located in: + ```./config``` -* run: -```npm start``` +* run: + ```npm start``` -* import DICOM images: use any c-store-scu to push to internal store-scp -```(AET: DICOMWEB_PACS port: 8888)``` +* import DICOM images: use any c-store-scu to push to internal store-scp + ```(AET: DICOMWEB_PACS port: 8888)``` -* (or use internal store-scu): put DICOM into import directory and run -```npm run import``` +* (or use internal store-scu): put DICOM into import directory and run + ```npm run import``` (server needs to be running) -* open webbrowser and start viewing -```http://localhost:5000``` +* open webbrowser and start viewing + ```http://localhost:5000``` ## What to modify -* (optional) change source port or AET +* (optional) change our port or AET -``` -config.source = { - aet: "OUR_AET", - ip: "OUR_IP", - port: "OUR_PORT" -}; -``` + ``` + config.source = { + aet: "OUR_AET", + ip: "OUR_IP", + port: "OUR_PORT" + }; + ``` * add peers to your PACS -``` -config.peers = [ -{ - aet: "PEER_AET", - ip: "PEER_IP", - port: "PEER_PORT" -}]; -``` - -* update port -```config.webserverPort = 5000;``` + ``` + config.peers = [ + { + aet: "PEER_AET", + ip: "PEER_IP", + port: "PEER_PORT" + }]; + ``` + +* update webserver port: + ```config.webserverPort = 5000;``` ## License MIT \ No newline at end of file diff --git a/package.json b/package.json index cc9e610..0e7de68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dicomweb-pacs", - "version": "1.0.1", + "version": "1.0.2", "description": "A self contained easy to use PACS with DICOMWEB and DIMSE service support", "main": "app.js", "scripts": { @@ -43,7 +43,7 @@ "dependencies": { "config": "^3.3.2", "dicom-data-dictionary": "^0.3.1", - "dicom-dimse-native": "^1.2.1", + "dicom-dimse-native": "^1.2.2", "dicom-parser": "^1.8.7", "fastify": "^3.4.1", "fastify-cors": "^4.1.0",