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: docs/Configuration.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ The settings that define an InterSystems IRIS server and the connection to the s
10
10
11
11
## Configuring a Server
12
12
13
-
First, configure one or more servers. Open the settings editor by selecting **File > Preferences > Settings** (**Code > Preferences > Settings** on Mac) from the menu. Select the **User** or **Workspace** settings level by selecting it at the top of the settings window. For example, the following screen shot shows Workspace selected:
13
+
First, configure one or more servers. Open the settings editor by selecting **File > Preferences > Settings** (**Code > Preferences > Settings** on macOS) from the menu. Select the **User** or **Workspace** settings level by selecting it at the top of the settings window. For example, the following screen shot shows Workspace selected:
@@ -24,7 +24,7 @@ And this screen shot shows Server Manager area of the edit pane:
24
24
25
25
You need to edit the server configuration in the settings.json file, so your only option is to click *Edit in settings.json*.
26
26
27
-
To configure a server, enter code something like this:
27
+
To configure a server, enter something like this:
28
28
29
29
```json
30
30
"intersystems.servers": {
@@ -41,36 +41,36 @@ To configure a server, enter code something like this:
41
41
42
42
The components of this server definition are:
43
43
44
-
-**test** - an arbitrary name to identify this server
44
+
-**test** - an arbitrary name to identify this server.
45
45
-**webServer** - The collection of properties that define the web server.
46
46
-**scheme** - The protocol used for connections.
47
-
-**host** - the host for this server
48
-
-**port** - the WebServer port number for this server
47
+
-**host** - the host for this server.
48
+
-**port** - the WebServer port number for this server.
49
49
-**username** - the username to use in logging in to this server.
50
50
-**password** - password for the specified username. Entering the password in this file is acceptable only in limited situations with very low need for security.
51
51
52
-
If you do not add a password to the server definition, anyone using the server needs to supply the password. Or, you can store the password securely in the system Keychain. The InterSystems Server Manager adds the following commands for managing stored passwords to the Command Palette:
52
+
If you do not add a password to the server definition, anyone using the server needs to supply the password. Or, you can store the password securely in the system keychain. The InterSystems Server Manager extension adds to the Command Palette the following commands for managing stored passwords:
53
53
54
-
-**InterSystems Server Manager: Clear Password from Keychain** - remove password for selected server
55
-
-**InterSystems Server Manager: Store Password in Keychain** - select a server and enter a password
54
+
-**InterSystems Server Manager: Store Password in Keychain** - select a server and enter a password.
55
+
-**InterSystems Server Manager: Clear Password from Keychain** - remove password for selected server.
56
56
57
57
## Configuring a Server Connection
58
58
59
-
Select InterSystems ObjectScript from the settings editor extensions list. You need to edit the server configuration in the settings.json file, so your click *Edit in settings.json* under the heading **Objectscript: conn**.
59
+
Select InterSystems ObjectScript from the settings editor's Extensions list. You need to edit the server configuration in the settings.json file, so your click *Edit in settings.json* under the heading **Objectscript: conn**.
60
60
61
61
You should enter code something like this:
62
62
63
63
```json
64
64
"objectscript.conn": {
65
+
"server": "test",
65
66
"ns": "USER",
66
-
"server": "tst",
67
67
"active": true,
68
68
},
69
69
```
70
70
The components of this server definition are:
71
71
72
-
-**ns** - namespace to use on the server
73
-
-**server** - server name as specified in the server configuration
72
+
-**server** - server name as specified in the server configuration.
73
+
-**ns** - namespace to use on the server.
74
74
-**active** - specifies whether the connection is active.
75
75
76
76
## Configuring Export from Server
@@ -100,6 +100,6 @@ The components of this export definition are:
0 commit comments