Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
knopkem committed Sep 30, 2020
1 parent 671cc14 commit 9770887
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 39 deletions.
75 changes: 38 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 9770887

Please sign in to comment.