You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-5Lines changed: 12 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -43,14 +43,19 @@ We recommend you define server connections in the `intersystems.servers` object
43
43
"host": "127.0.0.1",
44
44
"port": 52773
45
45
},
46
-
"description": "My local IRIS",
47
-
"username": "me"
46
+
"description": "My local IRIS",
47
+
"username": "me"
48
48
}
49
49
}
50
50
```
51
-
Setting the `username` property is optional. If omitted it will be prompted for when connecting.
52
51
53
-
By defining connections in your User Settings they become available for use by any workspace you open in VSCode.
52
+
By defining connections in your User Settings they become available for use by any workspace you open in VSCode. Alternatively, define them in workspace-specific settings.
53
+
54
+
Setting the `username` property is optional. If omitted it will be prompted for when connecting, then cached for the session..
55
+
56
+
Setting a plaintext value for the `password` property is not recommended. Instead, run the `InterSystems Server Manager: Store Password in Keychain` command from Command Palette.
57
+
58
+
If no password has been set or stored it will be prompted for when connecting, then cached for the session.
54
59
55
60
### Client-side Editing
56
61
@@ -66,7 +71,9 @@ We recommend that `objectscript.conn` uses its `server` property to point to an
66
71
}
67
72
```
68
73
69
-
The mandatory `ns` property defines which server namespace you will work with. If `username` is set here it overrides that setting from the `intersystems.servers` entry.
74
+
The mandatory `ns` property defines which server namespace you will work with.
75
+
76
+
When the `server` property is set, any `username` or `password` properties of `objectscript.conn` are ignored. Instead these values come from the `intersystems.servers` entry.
0 commit comments