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: messages/config.md
+30-6
Original file line number
Diff line number
Diff line change
@@ -75,11 +75,11 @@ In sfdx-project.json, indicate only one package directory (path) as the default.
75
75
76
76
The sfdx-project.json file must include one, and only one, default package directory (path). Because your sfdx-project.json file contains only one package directory, it must be the default. Remove the `"default": false` key and try again.
77
77
78
-
# targetOrg
78
+
# target-org
79
79
80
80
Username or alias of the org that all commands run against by default. (sf only)
81
81
82
-
# targetDevHub
82
+
# target-dev-hub
83
83
84
84
Username or alias of your default Dev Hub org. (sf only)
85
85
@@ -93,28 +93,52 @@ Username or alias of your default Dev Hub org. (sfdx only)
93
93
94
94
# isvDebuggerSid
95
95
96
-
ISV debugger SID
96
+
ISV debugger SID (sfdx only)
97
97
98
98
# isvDebuggerUrl
99
99
100
-
ISV debugger URL
100
+
ISV debugger URL (sfdx only)
101
+
102
+
# org-isv-debugger-sid
103
+
104
+
ISV debugger SID.
105
+
106
+
# org-isv-debugger-url
107
+
108
+
ISV debugger URL.
101
109
102
110
# apiVersion
103
111
112
+
API version of your project. Default: API version of your Dev Hub org. (sfdx only)
113
+
114
+
# org-api-version
115
+
104
116
API version of your project. Default: API version of your Dev Hub org.
105
117
106
118
# disableTelemetry
107
119
108
-
Disables the collection of usage and user environment information, etc. Default: true.
120
+
Disables the collection of usage and user environment information, etc. Default: false. (sfdx only)
121
+
122
+
# disable-telemetry
123
+
124
+
Disables the collection of usage and user environment information, etc. Default: false.
109
125
110
126
# maxQueryLimit
111
127
128
+
Maximum number of Salesforce records returned by a CLI command. Default: 10,000. (sfdx only)
129
+
130
+
# org-max-query-limit
131
+
112
132
Maximum number of Salesforce records returned by a CLI command. Default: 10,000.
113
133
114
134
# restDeploy
115
135
116
-
Whether deployments use the Metadata REST API (true) or SOAP API (false, default value).
136
+
Whether deployments use the Metadata REST API (true) or SOAP API (false, default value). (sfdx only)
117
137
118
138
# instanceUrl
119
139
140
+
URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com. (sfdx only)
141
+
142
+
# org-instance-url
143
+
120
144
URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com.
Copy file name to clipboardexpand all lines: messages/envVars.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -174,7 +174,7 @@ Username or alias of your default Dev Hub org. Overrides the target-dev-hub conf
174
174
175
175
Specifies an access token when using a login command that uses access tokens.
176
176
177
-
# sfApiVersion
177
+
# sfOrgApiVersion
178
178
179
179
API version for a specific project or all projects. Default value is the API version of your Dev Hub. Overrides the apiVersion configuration variable.
180
180
@@ -218,7 +218,7 @@ Time, in seconds, that Salesforce CLI waits for the Lightning Experience custom
218
218
219
219
Set to true to scope Apex test results to the classes entered during a test run when running the Apex test commands.
220
220
221
-
# sfInstanceUrl
221
+
# sfOrgInstanceUrl
222
222
223
223
URL of the Salesforce instance that is hosting your org. Default value is https://login.salesforce.com. Overrides the instanceUrl configuration variable.
224
224
@@ -238,7 +238,7 @@ The default rotation period for logs. Example '1d' will rotate logs daily (at mi
238
238
239
239
The number of backup rotated log files to keep. Example: '3' will have the base sf.log file, and the past 3 (period) log files.
240
240
241
-
# sfMaxQueryLimit
241
+
# sfOrgMaxQueryLimit
242
242
243
243
Maximum number of Salesforce records returned by a CLI command. Default value is 10,000. Overrides the maxQueryLimit configuration variable.
* @deprecated Replaced by OrgConfigProperties.ORG_ISV_DEBUGGER_SID in v3 {@link https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config}
126
147
*/
127
148
ISV_DEBUGGER_SID='isvDebuggerSid',
128
149
129
150
/**
130
151
* The url for the debugger configuration.
152
+
*
153
+
* @deprecated Replaced by OrgConfigProperties.ORG_ISV_DEBUGGER_URL in v3 {@link https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config}
131
154
*/
132
155
ISV_DEBUGGER_URL='isvDebuggerUrl',
133
156
134
157
/**
135
158
* The api version
159
+
*
160
+
* @deprecated Replaced by OrgConfigProperties.ORG_API_VERSION in v3 {@link https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config}
136
161
*/
137
162
API_VERSION='apiVersion',
138
163
139
164
/**
140
165
* Disables telemetry reporting
166
+
*
167
+
* @deprecated Replaced by SfPropertyKeys.DISABLE_TELEMETRY in v3 {@link https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config}
141
168
*/
142
169
DISABLE_TELEMETRY='disableTelemetry',
143
170
144
171
/**
145
172
* Custom templates repo or local location.
173
+
*
174
+
* @deprecated Replaced by OrgConfigProperties.ORG_CUSTOM_METADATA_TEMPLATES in v3 {@link https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config}
* allows users to override the 10,000 result query limit
180
+
*
181
+
* @deprecated Replaced by OrgConfigProperties.ORG_MAX_QUERY_LIMIT in v3 {@link https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config}
151
182
*/
152
183
MAX_QUERY_LIMIT='maxQueryLimit',
153
184
154
-
/** */
185
+
/**
186
+
* @deprecated
187
+
*/
155
188
REST_DEPLOY='restDeploy',
156
189
157
-
/** */
190
+
/**
191
+
* @deprecated Replaced by OrgConfigProperties.ORG_INSTANCE_URL in v3 {@link https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config}
0 commit comments