Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hans-permana committed Feb 21, 2018
1 parent 7e81aa4 commit 810daf6
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion docs/user_manual/um_setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,31 @@ Do npm install::
cd dedop-studio
npm install

Create a dedop-config.js and put the location of ``dedop-webapi.exe`` (more information about the can be found in ``dedop-config.template.js``::
Create a dedop-config.js and put the location of ``dedop-webapi.exe`` (Windows) or ``dedop-webapi`` (MacOS and Linux) under ``webAPIConfig`` field.
More information about the can be found in ``dedop-config.template.js``. Sample values for ``webAPIConfig`` in different OS's are
provided here::

# Windows
webAPIConfig: {
command: "C:\\Miniconda3\\envs\\dedop\\Scripts\\dedop-webapi.exe",
servicePort: 2999,
processOptions: {}
}

# MacOS
webAPIConfig: {
command: "/Users/userName/miniconda3/envs/dedop/bin/dedop-webapi",
servicePort: 2999,
processOptions: {}
}

# Linux
webAPIConfig: {
command: "/home/userName/miniconda3/envs/dedop/bin/dedop-webapi",
servicePort: 2999,
processOptions: {}
}

Compile::

npm run compile
Expand Down

0 comments on commit 810daf6

Please sign in to comment.