Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update running.md adding the tool defaults for MacOS #394

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/manual/running.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,12 @@ Typically this looks something like:
</array>
```

To see this list with the Terminal, use this command:
```
export OR_INFO="/Applications/OpenRefine.app/Contents/Info.plist"
defaults read $OR_INFO JVMOptions
```

Add in values such as:

```
Expand All @@ -294,8 +300,14 @@ Add in values such as:
<string>-Dext.gdata.clientsecret=************************</string>
<string>-Dext.gdata.apikey=***************************************</string>
</array>
```

If the values aren’t already there, you can add them easily with this Terminal command:
```
export OR_INFO="/Applications/OpenRefine.app/Contents/Info.plist"
defaults write $OR_INFO JVMOptions -array-add "-Drefine.interface=192.168.0.10"
```
This will not work if you already have the value defined, so whatch out for that.

</TabItem>

Expand Down