Skip to content

Commit 60cfefb

Browse files
committed
updated readme, installation section
1 parent 7b3efa2 commit 60cfefb

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,31 @@
2222
## Installation
2323

2424
Install [Visual Studio Code](https://code.visualstudio.com/) first.
25+
2526
Open VSCode. Go to extensions and search for "ObjectScript" like it is shown on the attached screenshot and install it.
2627
Or install from ObjectScript extension page on [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=daimor.vscode-objectscript)
28+
![installation](https://raw.githubusercontent.com/daimor/vscode-objectscript/master/images/installation.gif)
2729

2830
## Configure connection
2931

3032
To be able to use many plugin features, you need to configure the connection to Caché server first.
3133

32-
- Find a 'objectscript.conn' section in workspace settings (File - Preferences - Settings)
33-
- Change settings according to your Caché instance and reload VSCode ( as temporary solution )
34-
- You will see Caché-related output in "Output" while switched to "ObjectScript" channel (right drop-down menu on top of the output window)
34+
- Find a 'objectscript.conn' section in workspace settings (File - Preferences - Settings), do not forget to set `active` to `true`
35+
`port` should follow to web port of instance (usually by default, 57772 for Caché/Ensemble, 52773 for IRIS)
36+
```JSON
37+
"objectscript.conn": {
38+
"active": true,
39+
"label": "LOCAL",
40+
"host": "127.0.0.1",
41+
"port": 52773,
42+
"username": "user",
43+
"password": "password",
44+
"ns": "USER",
45+
"https": false
46+
}
47+
```
48+
- Change settings according to your Caché/IRIS instance
49+
- You will see related output in "Output" while switched to "ObjectScript" channel (right drop-down menu on top of the output window)
3550

3651
## Notes
3752

images/installation.gif

576 KB
Loading

0 commit comments

Comments
 (0)