Skip to content

Latest commit

 

History

History
52 lines (44 loc) · 1.17 KB

CONTRIBUTING.md

File metadata and controls

52 lines (44 loc) · 1.17 KB

Contributing

Getting started

  1. Install Git and Node.js
  2. Run in Terminal:
$ git clone https://github.com/epam/med3web.git && cd med3web
$ npm i
$ npm start

Submitting changes

We are following GitHub's Collaborating with Issues and Pull Requests Guide

Demo data customization

To add custom models to Demo files

Edit /src/demo/config/config.js, for example:

export default {
  demoPelvisPrefix : 'http://your.site.com/folder1/folder2/folder3/dicom/modelName1/',
  demoPelvisUrls : [
    'file0001.dcm',
    'file0002.dcm',
    'file0003.dcm',
    'file0004.dcm',
    'file0005.dcm',
    'file0006.dcm',
    'file0007.dcm',
    'file0008.dcm',
    'file0009.dcm',
    'file0010.dcm',
    ...
    'file9871.dcm',
  ],
  demoLungsPrefix: 'http://your.site.com/folder1/folder2/folder3/dicom/modelName2/',
  demoLungsUrls: [
    'name001.dcm',
    'name002.dcm',
    'name003.dcm',
    'name004.dcm',
    'name005.dcm',
    ...
    'name406.dcm',
  ],
};

Demo data should have at least 32 dcm files (slices).