@adobe/aio-cli-plugin-app 14.3.2 → 14.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +221 -188
- package/oclif.manifest.json +223 -1
- package/package.json +1 -1
- package/src/BaseCommand.js +19 -14
- package/src/commands/app/add/action.js +1 -1
- package/src/commands/app/add/event.js +2 -2
- package/src/commands/app/add/extension.js +1 -1
- package/src/commands/app/add/web-assets.js +1 -1
- package/src/commands/app/config/get/log-forwarding/errors.js +7 -3
- package/src/commands/app/config/get/log-forwarding.js +6 -1
- package/src/commands/app/config/set/log-forwarding.js +5 -1
- package/src/commands/app/delete/action.js +11 -11
- package/src/commands/app/delete/extension.js +5 -5
- package/src/commands/app/delete/web-assets.js +1 -1
- package/src/commands/app/deploy.js +1 -1
- package/src/commands/app/get-url.js +5 -5
- package/src/commands/app/info.js +1 -1
- package/src/commands/app/logs.js +1 -1
- package/src/commands/app/pack.js +6 -6
- package/src/commands/app/test.js +2 -1
- package/src/commands/app/undeploy.js +1 -1
package/README.md
CHANGED
|
@@ -64,17 +64,18 @@ Create, run, test, and deploy Adobe I/O Apps
|
|
|
64
64
|
|
|
65
65
|
```
|
|
66
66
|
USAGE
|
|
67
|
-
$ aio app [-v] [--version]
|
|
67
|
+
$ aio app [-v] [--version] [--config-validation]
|
|
68
68
|
|
|
69
69
|
FLAGS
|
|
70
|
-
-v, --verbose
|
|
71
|
-
--
|
|
70
|
+
-v, --verbose Verbose output
|
|
71
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
72
|
+
--version Show version
|
|
72
73
|
|
|
73
74
|
DESCRIPTION
|
|
74
75
|
Create, run, test, and deploy Adobe I/O Apps
|
|
75
76
|
```
|
|
76
77
|
|
|
77
|
-
_See code: [src/commands/app/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
78
|
+
_See code: [src/commands/app/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/index.js)_
|
|
78
79
|
|
|
79
80
|
## `aio app add`
|
|
80
81
|
|
|
@@ -82,17 +83,18 @@ Add a new component to an existing Adobe I/O App
|
|
|
82
83
|
|
|
83
84
|
```
|
|
84
85
|
USAGE
|
|
85
|
-
$ aio app add [-v] [--version]
|
|
86
|
+
$ aio app add [-v] [--version] [--config-validation]
|
|
86
87
|
|
|
87
88
|
FLAGS
|
|
88
|
-
-v, --verbose
|
|
89
|
-
--
|
|
89
|
+
-v, --verbose Verbose output
|
|
90
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
91
|
+
--version Show version
|
|
90
92
|
|
|
91
93
|
DESCRIPTION
|
|
92
94
|
Add a new component to an existing Adobe I/O App
|
|
93
95
|
```
|
|
94
96
|
|
|
95
|
-
_See code: [src/commands/app/add/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
97
|
+
_See code: [src/commands/app/add/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/add/index.js)_
|
|
96
98
|
|
|
97
99
|
## `aio app add action`
|
|
98
100
|
|
|
@@ -100,14 +102,15 @@ Add new actions
|
|
|
100
102
|
|
|
101
103
|
```
|
|
102
104
|
USAGE
|
|
103
|
-
$ aio app add action [-v] [--version] [--install] [-y] [-e <value>]
|
|
105
|
+
$ aio app add action [-v] [--version] [--config-validation] [--install] [-y] [-e <value>]
|
|
104
106
|
|
|
105
107
|
FLAGS
|
|
106
|
-
-e, --extension=<value>
|
|
107
|
-
-v, --verbose
|
|
108
|
-
-y, --yes
|
|
109
|
-
--[no-]
|
|
110
|
-
--
|
|
108
|
+
-e, --extension=<value> Add actions to a specific extension
|
|
109
|
+
-v, --verbose Verbose output
|
|
110
|
+
-y, --yes Skip questions, and use all default values
|
|
111
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
112
|
+
--[no-]install [default: true] Run npm installation after files are created
|
|
113
|
+
--version Show version
|
|
111
114
|
|
|
112
115
|
DESCRIPTION
|
|
113
116
|
Add new actions
|
|
@@ -117,7 +120,7 @@ ALIASES
|
|
|
117
120
|
$ aio app add actions
|
|
118
121
|
```
|
|
119
122
|
|
|
120
|
-
_See code: [src/commands/app/add/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
123
|
+
_See code: [src/commands/app/add/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/add/action.js)_
|
|
121
124
|
|
|
122
125
|
## `aio app add ci`
|
|
123
126
|
|
|
@@ -125,17 +128,18 @@ Add CI files
|
|
|
125
128
|
|
|
126
129
|
```
|
|
127
130
|
USAGE
|
|
128
|
-
$ aio app add ci [-v] [--version]
|
|
131
|
+
$ aio app add ci [-v] [--version] [--config-validation]
|
|
129
132
|
|
|
130
133
|
FLAGS
|
|
131
|
-
-v, --verbose
|
|
132
|
-
--
|
|
134
|
+
-v, --verbose Verbose output
|
|
135
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
136
|
+
--version Show version
|
|
133
137
|
|
|
134
138
|
DESCRIPTION
|
|
135
139
|
Add CI files
|
|
136
140
|
```
|
|
137
141
|
|
|
138
|
-
_See code: [src/commands/app/add/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
142
|
+
_See code: [src/commands/app/add/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/add/ci.js)_
|
|
139
143
|
|
|
140
144
|
## `aio app add event`
|
|
141
145
|
|
|
@@ -143,14 +147,15 @@ Add a new Adobe I/O Events action
|
|
|
143
147
|
|
|
144
148
|
```
|
|
145
149
|
USAGE
|
|
146
|
-
$ aio app add event [-v] [--version] [--install] [-y] [-e <value>]
|
|
150
|
+
$ aio app add event [-v] [--version] [--config-validation] [--install] [-y] [-e <value>]
|
|
147
151
|
|
|
148
152
|
FLAGS
|
|
149
|
-
-e, --extension=<value>
|
|
150
|
-
-v, --verbose
|
|
151
|
-
-y, --yes
|
|
152
|
-
--[no-]
|
|
153
|
-
--
|
|
153
|
+
-e, --extension=<value> Add events to a specific extension
|
|
154
|
+
-v, --verbose Verbose output
|
|
155
|
+
-y, --yes Skip questions, and use all default values
|
|
156
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
157
|
+
--[no-]install [default: true] Run npm installation after files are created
|
|
158
|
+
--version Show version
|
|
154
159
|
|
|
155
160
|
DESCRIPTION
|
|
156
161
|
Add a new Adobe I/O Events action
|
|
@@ -160,7 +165,7 @@ ALIASES
|
|
|
160
165
|
$ aio app add events
|
|
161
166
|
```
|
|
162
167
|
|
|
163
|
-
_See code: [src/commands/app/add/event.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
168
|
+
_See code: [src/commands/app/add/event.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/add/event.js)_
|
|
164
169
|
|
|
165
170
|
## `aio app add extension`
|
|
166
171
|
|
|
@@ -168,14 +173,15 @@ Add new extensions to the project
|
|
|
168
173
|
|
|
169
174
|
```
|
|
170
175
|
USAGE
|
|
171
|
-
$ aio app add extension [-v] [--version] [--install] [-y] [-e <value>...]
|
|
176
|
+
$ aio app add extension [-v] [--version] [--config-validation] [--install] [-y] [-e <value>...]
|
|
172
177
|
|
|
173
178
|
FLAGS
|
|
174
|
-
-e, --extension=<value>...
|
|
175
|
-
-v, --verbose
|
|
176
|
-
-y, --yes
|
|
177
|
-
--[no-]
|
|
178
|
-
--
|
|
179
|
+
-e, --extension=<value>... Specify extensions to add, skips selection prompt
|
|
180
|
+
-v, --verbose Verbose output
|
|
181
|
+
-y, --yes Skip questions, and use all default values
|
|
182
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
183
|
+
--[no-]install [default: true] Run npm installation after files are created
|
|
184
|
+
--version Show version
|
|
179
185
|
|
|
180
186
|
DESCRIPTION
|
|
181
187
|
Add new extensions to the project
|
|
@@ -186,7 +192,7 @@ ALIASES
|
|
|
186
192
|
$ aio app add extensions
|
|
187
193
|
```
|
|
188
194
|
|
|
189
|
-
_See code: [src/commands/app/add/extension.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
195
|
+
_See code: [src/commands/app/add/extension.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/add/extension.js)_
|
|
190
196
|
|
|
191
197
|
## `aio app add service`
|
|
192
198
|
|
|
@@ -194,13 +200,14 @@ Subscribe to Services in the current Workspace
|
|
|
194
200
|
|
|
195
201
|
```
|
|
196
202
|
USAGE
|
|
197
|
-
$ aio app add service [-v] [--version] [--use-jwt]
|
|
203
|
+
$ aio app add service [-v] [--version] [--config-validation] [--use-jwt]
|
|
198
204
|
|
|
199
205
|
FLAGS
|
|
200
|
-
-v, --verbose
|
|
201
|
-
--
|
|
202
|
-
|
|
203
|
-
|
|
206
|
+
-v, --verbose Verbose output
|
|
207
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
208
|
+
--use-jwt if the config has both jwt and OAuth Server to Server Credentials (while migrating),
|
|
209
|
+
prefer the JWT credentials
|
|
210
|
+
--version Show version
|
|
204
211
|
|
|
205
212
|
DESCRIPTION
|
|
206
213
|
Subscribe to Services in the current Workspace
|
|
@@ -210,7 +217,7 @@ ALIASES
|
|
|
210
217
|
$ aio app add services
|
|
211
218
|
```
|
|
212
219
|
|
|
213
|
-
_See code: [src/commands/app/add/service.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
220
|
+
_See code: [src/commands/app/add/service.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/add/service.js)_
|
|
214
221
|
|
|
215
222
|
## `aio app add web-assets`
|
|
216
223
|
|
|
@@ -218,20 +225,21 @@ Add web assets support
|
|
|
218
225
|
|
|
219
226
|
```
|
|
220
227
|
USAGE
|
|
221
|
-
$ aio app add web-assets [-v] [--version] [--install] [-y] [-e <value>]
|
|
228
|
+
$ aio app add web-assets [-v] [--version] [--config-validation] [--install] [-y] [-e <value>]
|
|
222
229
|
|
|
223
230
|
FLAGS
|
|
224
|
-
-e, --extension=<value>
|
|
225
|
-
-v, --verbose
|
|
226
|
-
-y, --yes
|
|
227
|
-
--[no-]
|
|
228
|
-
--
|
|
231
|
+
-e, --extension=<value> Add web-assets to a specific extension
|
|
232
|
+
-v, --verbose Verbose output
|
|
233
|
+
-y, --yes Skip questions, and use all default values
|
|
234
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
235
|
+
--[no-]install [default: true] Run npm installation after files are created
|
|
236
|
+
--version Show version
|
|
229
237
|
|
|
230
238
|
DESCRIPTION
|
|
231
239
|
Add web assets support
|
|
232
240
|
```
|
|
233
241
|
|
|
234
|
-
_See code: [src/commands/app/add/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
242
|
+
_See code: [src/commands/app/add/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/add/web-assets.js)_
|
|
235
243
|
|
|
236
244
|
## `aio app build`
|
|
237
245
|
|
|
@@ -239,20 +247,21 @@ Build an Adobe I/O App
|
|
|
239
247
|
|
|
240
248
|
```
|
|
241
249
|
USAGE
|
|
242
|
-
$ aio app build [-v] [--version] [--actions | -a <value>...] [--web-assets]
|
|
243
|
-
[--web-optimize] [-e <value>... | ]
|
|
250
|
+
$ aio app build [-v] [--version] [--config-validation] [--actions | -a <value>...] [--web-assets]
|
|
251
|
+
[--force-build] [--content-hash] [--web-optimize] [-e <value>... | ]
|
|
244
252
|
|
|
245
253
|
FLAGS
|
|
246
|
-
-a, --action=<value>...
|
|
247
|
-
|
|
248
|
-
-e, --extension=<value>...
|
|
249
|
-
-v, --verbose
|
|
250
|
-
--[no-]actions
|
|
251
|
-
--[no-]
|
|
252
|
-
--[no-]
|
|
253
|
-
--
|
|
254
|
-
--
|
|
255
|
-
--web-
|
|
254
|
+
-a, --action=<value>... Build only a specific action, the flags can be specified multiple times, this will set
|
|
255
|
+
--no-publish
|
|
256
|
+
-e, --extension=<value>... Build only a specific extension point, the flags can be specified multiple times
|
|
257
|
+
-v, --verbose Verbose output
|
|
258
|
+
--[no-]actions [default: true] Build actions if any
|
|
259
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
260
|
+
--[no-]content-hash [default: true] Enable content hashing in browser code
|
|
261
|
+
--[no-]force-build [default: true] Force a build even if one already exists
|
|
262
|
+
--version Show version
|
|
263
|
+
--[no-]web-assets [default: true] Build web-assets if any
|
|
264
|
+
--web-optimize [default: false] Enable optimization (minification) of js/css/html
|
|
256
265
|
|
|
257
266
|
DESCRIPTION
|
|
258
267
|
Build an Adobe I/O App
|
|
@@ -261,7 +270,7 @@ DESCRIPTION
|
|
|
261
270
|
Use the --force-build flag to force a build even if one already exists.
|
|
262
271
|
```
|
|
263
272
|
|
|
264
|
-
_See code: [src/commands/app/build.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
273
|
+
_See code: [src/commands/app/build.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/build.js)_
|
|
265
274
|
|
|
266
275
|
## `aio app clean`
|
|
267
276
|
|
|
@@ -269,11 +278,12 @@ Remove all build artifacts from the local machine
|
|
|
269
278
|
|
|
270
279
|
```
|
|
271
280
|
USAGE
|
|
272
|
-
$ aio app clean [-v] [--version]
|
|
281
|
+
$ aio app clean [-v] [--version] [--config-validation]
|
|
273
282
|
|
|
274
283
|
FLAGS
|
|
275
|
-
-v, --verbose
|
|
276
|
-
--
|
|
284
|
+
-v, --verbose Verbose output
|
|
285
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
286
|
+
--version Show version
|
|
277
287
|
|
|
278
288
|
DESCRIPTION
|
|
279
289
|
Remove all build artifacts from the local machine
|
|
@@ -286,7 +296,7 @@ DESCRIPTION
|
|
|
286
296
|
Note that this will require a full rebuild on your next build command.
|
|
287
297
|
```
|
|
288
298
|
|
|
289
|
-
_See code: [src/commands/app/clean.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
299
|
+
_See code: [src/commands/app/clean.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/clean.js)_
|
|
290
300
|
|
|
291
301
|
## `aio app create [PATH]`
|
|
292
302
|
|
|
@@ -294,21 +304,22 @@ Create a new Adobe I/O App with default parameters
|
|
|
294
304
|
|
|
295
305
|
```
|
|
296
306
|
USAGE
|
|
297
|
-
$ aio app create [PATH] [-v] [--version] [-i <value>]
|
|
307
|
+
$ aio app create [PATH] [-v] [--version] [--config-validation] [-i <value>]
|
|
298
308
|
|
|
299
309
|
ARGUMENTS
|
|
300
310
|
[PATH] [default: .] Path to the app directory
|
|
301
311
|
|
|
302
312
|
FLAGS
|
|
303
|
-
-i, --import=<value>
|
|
304
|
-
-v, --verbose
|
|
305
|
-
--
|
|
313
|
+
-i, --import=<value> Import an Adobe I/O Developer Console configuration file
|
|
314
|
+
-v, --verbose Verbose output
|
|
315
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
316
|
+
--version Show version
|
|
306
317
|
|
|
307
318
|
DESCRIPTION
|
|
308
319
|
Create a new Adobe I/O App with default parameters
|
|
309
320
|
```
|
|
310
321
|
|
|
311
|
-
_See code: [src/commands/app/create.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
322
|
+
_See code: [src/commands/app/create.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/create.js)_
|
|
312
323
|
|
|
313
324
|
## `aio app delete`
|
|
314
325
|
|
|
@@ -316,17 +327,18 @@ Delete a component from an existing Adobe I/O App
|
|
|
316
327
|
|
|
317
328
|
```
|
|
318
329
|
USAGE
|
|
319
|
-
$ aio app delete [-v] [--version]
|
|
330
|
+
$ aio app delete [-v] [--version] [--config-validation]
|
|
320
331
|
|
|
321
332
|
FLAGS
|
|
322
|
-
-v, --verbose
|
|
323
|
-
--
|
|
333
|
+
-v, --verbose Verbose output
|
|
334
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
335
|
+
--version Show version
|
|
324
336
|
|
|
325
337
|
DESCRIPTION
|
|
326
338
|
Delete a component from an existing Adobe I/O App
|
|
327
339
|
```
|
|
328
340
|
|
|
329
|
-
_See code: [src/commands/app/delete/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
341
|
+
_See code: [src/commands/app/delete/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/delete/index.js)_
|
|
330
342
|
|
|
331
343
|
## `aio app delete action [ACTION-NAME]`
|
|
332
344
|
|
|
@@ -334,15 +346,16 @@ Delete existing actions
|
|
|
334
346
|
|
|
335
347
|
```
|
|
336
348
|
USAGE
|
|
337
|
-
$ aio app delete action [ACTION-NAME] [-v] [--version] [-y]
|
|
349
|
+
$ aio app delete action [ACTION-NAME] [-v] [--version] [--config-validation] [-y]
|
|
338
350
|
|
|
339
351
|
ARGUMENTS
|
|
340
352
|
[ACTION-NAME] Action `pkg/name` to delete, you can specify multiple actions via a comma separated list
|
|
341
353
|
|
|
342
354
|
FLAGS
|
|
343
|
-
-v, --verbose
|
|
344
|
-
-y, --yes
|
|
345
|
-
--
|
|
355
|
+
-v, --verbose Verbose output
|
|
356
|
+
-y, --yes Skip questions, and use all default values
|
|
357
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
358
|
+
--version Show version
|
|
346
359
|
|
|
347
360
|
DESCRIPTION
|
|
348
361
|
Delete existing actions
|
|
@@ -352,7 +365,7 @@ ALIASES
|
|
|
352
365
|
$ aio app delete actions
|
|
353
366
|
```
|
|
354
367
|
|
|
355
|
-
_See code: [src/commands/app/delete/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
368
|
+
_See code: [src/commands/app/delete/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/delete/action.js)_
|
|
356
369
|
|
|
357
370
|
## `aio app delete ci`
|
|
358
371
|
|
|
@@ -360,18 +373,19 @@ Delete existing CI files
|
|
|
360
373
|
|
|
361
374
|
```
|
|
362
375
|
USAGE
|
|
363
|
-
$ aio app delete ci [-v] [--version] [-y]
|
|
376
|
+
$ aio app delete ci [-v] [--version] [--config-validation] [-y]
|
|
364
377
|
|
|
365
378
|
FLAGS
|
|
366
|
-
-v, --verbose
|
|
367
|
-
-y, --yes
|
|
368
|
-
--
|
|
379
|
+
-v, --verbose Verbose output
|
|
380
|
+
-y, --yes Skip questions, and use all default values
|
|
381
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
382
|
+
--version Show version
|
|
369
383
|
|
|
370
384
|
DESCRIPTION
|
|
371
385
|
Delete existing CI files
|
|
372
386
|
```
|
|
373
387
|
|
|
374
|
-
_See code: [src/commands/app/delete/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
388
|
+
_See code: [src/commands/app/delete/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/delete/ci.js)_
|
|
375
389
|
|
|
376
390
|
## `aio app delete extension`
|
|
377
391
|
|
|
@@ -379,14 +393,15 @@ Delete existing extensions
|
|
|
379
393
|
|
|
380
394
|
```
|
|
381
395
|
USAGE
|
|
382
|
-
$ aio app delete extension [-v] [--version] [-y] [--install] [-e <value>...]
|
|
396
|
+
$ aio app delete extension [-v] [--version] [--config-validation] [-y] [--install] [-e <value>...]
|
|
383
397
|
|
|
384
398
|
FLAGS
|
|
385
|
-
-e, --extension=<value>...
|
|
386
|
-
-v, --verbose
|
|
387
|
-
-y, --yes
|
|
388
|
-
--[no-]
|
|
389
|
-
--
|
|
399
|
+
-e, --extension=<value>... Specify extensions to delete, skips selection prompt
|
|
400
|
+
-v, --verbose Verbose output
|
|
401
|
+
-y, --yes Skip questions, and use all default values
|
|
402
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
403
|
+
--[no-]install [default: true] Run npm installation after files are created
|
|
404
|
+
--version Show version
|
|
390
405
|
|
|
391
406
|
DESCRIPTION
|
|
392
407
|
Delete existing extensions
|
|
@@ -397,7 +412,7 @@ ALIASES
|
|
|
397
412
|
$ aio app delete extensions
|
|
398
413
|
```
|
|
399
414
|
|
|
400
|
-
_See code: [src/commands/app/delete/extension.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
415
|
+
_See code: [src/commands/app/delete/extension.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/delete/extension.js)_
|
|
401
416
|
|
|
402
417
|
## `aio app delete service`
|
|
403
418
|
|
|
@@ -405,13 +420,14 @@ Delete Services in the current Workspace
|
|
|
405
420
|
|
|
406
421
|
```
|
|
407
422
|
USAGE
|
|
408
|
-
$ aio app delete service [-v] [--version] [--use-jwt]
|
|
423
|
+
$ aio app delete service [-v] [--version] [--config-validation] [--use-jwt]
|
|
409
424
|
|
|
410
425
|
FLAGS
|
|
411
|
-
-v, --verbose
|
|
412
|
-
--
|
|
413
|
-
|
|
414
|
-
|
|
426
|
+
-v, --verbose Verbose output
|
|
427
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
428
|
+
--use-jwt if the config has both jwt and OAuth Server to Server Credentials (while migrating),
|
|
429
|
+
prefer the JWT credentials
|
|
430
|
+
--version Show version
|
|
415
431
|
|
|
416
432
|
DESCRIPTION
|
|
417
433
|
Delete Services in the current Workspace
|
|
@@ -421,7 +437,7 @@ ALIASES
|
|
|
421
437
|
$ aio app delete services
|
|
422
438
|
```
|
|
423
439
|
|
|
424
|
-
_See code: [src/commands/app/delete/service.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
440
|
+
_See code: [src/commands/app/delete/service.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/delete/service.js)_
|
|
425
441
|
|
|
426
442
|
## `aio app delete web-assets`
|
|
427
443
|
|
|
@@ -429,18 +445,19 @@ Delete existing web assets
|
|
|
429
445
|
|
|
430
446
|
```
|
|
431
447
|
USAGE
|
|
432
|
-
$ aio app delete web-assets [-v] [--version] [-y]
|
|
448
|
+
$ aio app delete web-assets [-v] [--version] [--config-validation] [-y]
|
|
433
449
|
|
|
434
450
|
FLAGS
|
|
435
|
-
-v, --verbose
|
|
436
|
-
-y, --yes
|
|
437
|
-
--
|
|
451
|
+
-v, --verbose Verbose output
|
|
452
|
+
-y, --yes Skip questions, and use all default values
|
|
453
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
454
|
+
--version Show version
|
|
438
455
|
|
|
439
456
|
DESCRIPTION
|
|
440
457
|
Delete existing web assets
|
|
441
458
|
```
|
|
442
459
|
|
|
443
|
-
_See code: [src/commands/app/delete/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
460
|
+
_See code: [src/commands/app/delete/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/delete/web-assets.js)_
|
|
444
461
|
|
|
445
462
|
## `aio app deploy`
|
|
446
463
|
|
|
@@ -448,9 +465,9 @@ Deploy an Adobe I/O App
|
|
|
448
465
|
|
|
449
466
|
```
|
|
450
467
|
USAGE
|
|
451
|
-
$ aio app deploy [-v] [--version] [--actions | -a <value>...] [--web-assets]
|
|
452
|
-
[--content-hash] [--web-optimize] [-e <value>... | ] [--build] [--open] [--force-deploy |
|
|
453
|
-
--force-publish] [--force-events | | ] [--log-forwarding-update]
|
|
468
|
+
$ aio app deploy [-v] [--version] [--config-validation] [--actions | -a <value>...] [--web-assets]
|
|
469
|
+
[--force-build | ] [--content-hash] [--web-optimize] [-e <value>... | ] [--build] [--open] [--force-deploy |
|
|
470
|
+
--publish | --force-publish] [--force-events | | ] [--log-forwarding-update]
|
|
454
471
|
|
|
455
472
|
FLAGS
|
|
456
473
|
-a, --action=<value>... Deploy only a specific action, the flags can be specified multiple times, this will
|
|
@@ -459,6 +476,7 @@ FLAGS
|
|
|
459
476
|
-v, --verbose Verbose output
|
|
460
477
|
--[no-]actions [default: true] Deploy actions if any
|
|
461
478
|
--[no-]build [default: true] Run the build phase before deployment
|
|
479
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
462
480
|
--[no-]content-hash [default: true] Enable content hashing in browser code
|
|
463
481
|
--[no-]force-build [default: true] Force a build even if one already exists
|
|
464
482
|
--force-deploy [default: false] Force deploy changes, regardless of production Workspace being
|
|
@@ -486,7 +504,7 @@ DESCRIPTION
|
|
|
486
504
|
Use the --force-deploy flag to force deploy changes, regardless of production Workspace being published in Exchange.
|
|
487
505
|
```
|
|
488
506
|
|
|
489
|
-
_See code: [src/commands/app/deploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
507
|
+
_See code: [src/commands/app/deploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/deploy.js)_
|
|
490
508
|
|
|
491
509
|
## `aio app get-url [ACTION]`
|
|
492
510
|
|
|
@@ -494,21 +512,22 @@ Get action URLs
|
|
|
494
512
|
|
|
495
513
|
```
|
|
496
514
|
USAGE
|
|
497
|
-
$ aio app get-url [ACTION] [-v] [--version] [--cdn] [-j] [-h] [-y]
|
|
515
|
+
$ aio app get-url [ACTION] [-v] [--version] [--config-validation] [--cdn] [-j] [-h] [-y]
|
|
498
516
|
|
|
499
517
|
FLAGS
|
|
500
|
-
-h, --hson
|
|
501
|
-
-j, --json
|
|
502
|
-
-v, --verbose
|
|
503
|
-
-y, --yml
|
|
504
|
-
--cdn
|
|
505
|
-
--
|
|
518
|
+
-h, --hson Output human readable json
|
|
519
|
+
-j, --json Output json
|
|
520
|
+
-v, --verbose Verbose output
|
|
521
|
+
-y, --yml Output yml
|
|
522
|
+
--cdn Display CDN based action URLs
|
|
523
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
524
|
+
--version Show version
|
|
506
525
|
|
|
507
526
|
DESCRIPTION
|
|
508
527
|
Get action URLs
|
|
509
528
|
```
|
|
510
529
|
|
|
511
|
-
_See code: [src/commands/app/get-url.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
530
|
+
_See code: [src/commands/app/get-url.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/get-url.js)_
|
|
512
531
|
|
|
513
532
|
## `aio app info`
|
|
514
533
|
|
|
@@ -516,21 +535,22 @@ Display settings/configuration in use by an Adobe I/O App
|
|
|
516
535
|
|
|
517
536
|
```
|
|
518
537
|
USAGE
|
|
519
|
-
$ aio app info [-v] [--version] [-j | -h | -y] [--mask]
|
|
538
|
+
$ aio app info [-v] [--version] [--config-validation] [-j | -h | -y] [--mask]
|
|
520
539
|
|
|
521
540
|
FLAGS
|
|
522
|
-
-h, --hson
|
|
523
|
-
-j, --json
|
|
524
|
-
-v, --verbose
|
|
525
|
-
-y, --yml
|
|
526
|
-
--[no-]
|
|
527
|
-
--
|
|
541
|
+
-h, --hson Output human readable json
|
|
542
|
+
-j, --json Output json
|
|
543
|
+
-v, --verbose Verbose output
|
|
544
|
+
-y, --yml Output yml
|
|
545
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
546
|
+
--[no-]mask Hide known private info
|
|
547
|
+
--version Show version
|
|
528
548
|
|
|
529
549
|
DESCRIPTION
|
|
530
550
|
Display settings/configuration in use by an Adobe I/O App
|
|
531
551
|
```
|
|
532
552
|
|
|
533
|
-
_See code: [src/commands/app/info.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
553
|
+
_See code: [src/commands/app/info.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/info.js)_
|
|
534
554
|
|
|
535
555
|
## `aio app init [PATH]`
|
|
536
556
|
|
|
@@ -538,9 +558,10 @@ Create a new Adobe I/O App
|
|
|
538
558
|
|
|
539
559
|
```
|
|
540
560
|
USAGE
|
|
541
|
-
$ aio app init [PATH] [-v] [--version] [--install] [-y] [--login] [-e <value>... | -t
|
|
542
|
-
<value>] [--standalone-app | | ] [--template-options <value>] [-o <value> | -i <value> | ] [-p
|
|
543
|
-
<value> | | ] [--confirm-new-workspace] [--use-jwt] [--github-pat <value> ] [--linter
|
|
561
|
+
$ aio app init [PATH] [-v] [--version] [--config-validation] [--install] [-y] [--login] [-e <value>... | -t
|
|
562
|
+
<value>... | --repo <value>] [--standalone-app | | ] [--template-options <value>] [-o <value> | -i <value> | ] [-p
|
|
563
|
+
<value> | | ] [-w <value> | | ] [--confirm-new-workspace] [--use-jwt] [--github-pat <value> ] [--linter
|
|
564
|
+
none|basic|adobe-recommended]
|
|
544
565
|
|
|
545
566
|
ARGUMENTS
|
|
546
567
|
[PATH] [default: .] Path to the app directory
|
|
@@ -555,6 +576,7 @@ FLAGS
|
|
|
555
576
|
-w, --workspace=<value> [default: Stage] Specify the Adobe Developer Console Workspace to init from,
|
|
556
577
|
defaults to Stage
|
|
557
578
|
-y, --yes Skip questions, and use all default values
|
|
579
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
558
580
|
--[no-]confirm-new-workspace Prompt to confirm before creating a new workspace
|
|
559
581
|
--github-pat=<value> github personal access token to use for downloading private quickstart repos
|
|
560
582
|
--[no-]install [default: true] Run npm installation after files are created
|
|
@@ -572,7 +594,7 @@ DESCRIPTION
|
|
|
572
594
|
Create a new Adobe I/O App
|
|
573
595
|
```
|
|
574
596
|
|
|
575
|
-
_See code: [src/commands/app/init.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
597
|
+
_See code: [src/commands/app/init.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/init.js)_
|
|
576
598
|
|
|
577
599
|
## `aio app install PATH`
|
|
578
600
|
|
|
@@ -580,23 +602,24 @@ This command will support installing apps packaged by 'aio app pack'.
|
|
|
580
602
|
|
|
581
603
|
```
|
|
582
604
|
USAGE
|
|
583
|
-
$ aio app install PATH [-v] [--version] [--allow-scripts] [-o <value>] [--tests]
|
|
605
|
+
$ aio app install PATH [-v] [--version] [--config-validation] [--allow-scripts] [-o <value>] [--tests]
|
|
584
606
|
|
|
585
607
|
ARGUMENTS
|
|
586
608
|
PATH Path to the app package to install
|
|
587
609
|
|
|
588
610
|
FLAGS
|
|
589
|
-
-o, --output=<value>
|
|
590
|
-
-v, --verbose
|
|
591
|
-
--[no-]allow-scripts
|
|
592
|
-
--[no-]
|
|
593
|
-
--
|
|
611
|
+
-o, --output=<value> [default: .] The packaged app output folder path
|
|
612
|
+
-v, --verbose Verbose output
|
|
613
|
+
--[no-]allow-scripts Allow post and preinstall scripts during npm install/npm ci
|
|
614
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
615
|
+
--[no-]tests Run packaged app unit tests (e.g. aio app:test)
|
|
616
|
+
--version Show version
|
|
594
617
|
|
|
595
618
|
DESCRIPTION
|
|
596
619
|
This command will support installing apps packaged by 'aio app pack'.
|
|
597
620
|
```
|
|
598
621
|
|
|
599
|
-
_See code: [src/commands/app/install.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
622
|
+
_See code: [src/commands/app/install.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/install.js)_
|
|
600
623
|
|
|
601
624
|
## `aio app list`
|
|
602
625
|
|
|
@@ -604,17 +627,18 @@ List components for Adobe I/O App
|
|
|
604
627
|
|
|
605
628
|
```
|
|
606
629
|
USAGE
|
|
607
|
-
$ aio app list [-v] [--version]
|
|
630
|
+
$ aio app list [-v] [--version] [--config-validation]
|
|
608
631
|
|
|
609
632
|
FLAGS
|
|
610
|
-
-v, --verbose
|
|
611
|
-
--
|
|
633
|
+
-v, --verbose Verbose output
|
|
634
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
635
|
+
--version Show version
|
|
612
636
|
|
|
613
637
|
DESCRIPTION
|
|
614
638
|
List components for Adobe I/O App
|
|
615
639
|
```
|
|
616
640
|
|
|
617
|
-
_See code: [src/commands/app/list/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
641
|
+
_See code: [src/commands/app/list/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/list/index.js)_
|
|
618
642
|
|
|
619
643
|
## `aio app list extension`
|
|
620
644
|
|
|
@@ -622,13 +646,14 @@ List implemented extensions
|
|
|
622
646
|
|
|
623
647
|
```
|
|
624
648
|
USAGE
|
|
625
|
-
$ aio app list extension [-v] [--version] [-j] [-y]
|
|
649
|
+
$ aio app list extension [-v] [--version] [--config-validation] [-j] [-y]
|
|
626
650
|
|
|
627
651
|
FLAGS
|
|
628
|
-
-j, --json
|
|
629
|
-
-v, --verbose
|
|
630
|
-
-y, --yml
|
|
631
|
-
--
|
|
652
|
+
-j, --json Output json
|
|
653
|
+
-v, --verbose Verbose output
|
|
654
|
+
-y, --yml Output yml
|
|
655
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
656
|
+
--version Show version
|
|
632
657
|
|
|
633
658
|
DESCRIPTION
|
|
634
659
|
List implemented extensions
|
|
@@ -639,7 +664,7 @@ ALIASES
|
|
|
639
664
|
$ aio app list extensions
|
|
640
665
|
```
|
|
641
666
|
|
|
642
|
-
_See code: [src/commands/app/list/extension.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
667
|
+
_See code: [src/commands/app/list/extension.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/list/extension.js)_
|
|
643
668
|
|
|
644
669
|
## `aio app logs`
|
|
645
670
|
|
|
@@ -647,23 +672,24 @@ Fetch logs for an Adobe I/O App
|
|
|
647
672
|
|
|
648
673
|
```
|
|
649
674
|
USAGE
|
|
650
|
-
$ aio app logs [-v] [--version] [-l <value>] [-a <value>...] [-r] [-t | -w | -o]
|
|
675
|
+
$ aio app logs [-v] [--version] [--config-validation] [-l <value>] [-a <value>...] [-r] [-t | -w | -o]
|
|
651
676
|
|
|
652
677
|
FLAGS
|
|
653
|
-
-a, --action=<value>...
|
|
654
|
-
-l, --limit=<value>
|
|
655
|
-
-o, --poll
|
|
656
|
-
-r, --strip
|
|
657
|
-
-t, --tail
|
|
658
|
-
-v, --verbose
|
|
659
|
-
-w, --watch
|
|
660
|
-
--
|
|
678
|
+
-a, --action=<value>... Fetch logs for a specific action
|
|
679
|
+
-l, --limit=<value> [default: 1] Limit number of activations to fetch logs from ( 1-50 )
|
|
680
|
+
-o, --poll Fetch logs continuously
|
|
681
|
+
-r, --strip strip timestamp information and output first line only
|
|
682
|
+
-t, --tail Fetch logs continuously
|
|
683
|
+
-v, --verbose Verbose output
|
|
684
|
+
-w, --watch Fetch logs continuously
|
|
685
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
686
|
+
--version Show version
|
|
661
687
|
|
|
662
688
|
DESCRIPTION
|
|
663
689
|
Fetch logs for an Adobe I/O App
|
|
664
690
|
```
|
|
665
691
|
|
|
666
|
-
_See code: [src/commands/app/logs.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
692
|
+
_See code: [src/commands/app/logs.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/logs.js)_
|
|
667
693
|
|
|
668
694
|
## `aio app pack [PATH]`
|
|
669
695
|
|
|
@@ -671,22 +697,23 @@ This command will support packaging apps for redistribution.
|
|
|
671
697
|
|
|
672
698
|
```
|
|
673
699
|
USAGE
|
|
674
|
-
$ aio app pack [PATH] [-v] [--version] [--lock-file] [-o <value>]
|
|
700
|
+
$ aio app pack [PATH] [-v] [--version] [--config-validation] [--lock-file] [-o <value>]
|
|
675
701
|
|
|
676
702
|
ARGUMENTS
|
|
677
703
|
[PATH] [default: .] Path to the app directory to package
|
|
678
704
|
|
|
679
705
|
FLAGS
|
|
680
|
-
-o, --output=<value>
|
|
681
|
-
-v, --verbose
|
|
682
|
-
--[no-]
|
|
683
|
-
--
|
|
706
|
+
-o, --output=<value> [default: dist/app.zip] The packaged app output file path
|
|
707
|
+
-v, --verbose Verbose output
|
|
708
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
709
|
+
--[no-]lock-file Include the package-lock.json file in the packaged app
|
|
710
|
+
--version Show version
|
|
684
711
|
|
|
685
712
|
DESCRIPTION
|
|
686
713
|
This command will support packaging apps for redistribution.
|
|
687
714
|
```
|
|
688
715
|
|
|
689
|
-
_See code: [src/commands/app/pack.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
716
|
+
_See code: [src/commands/app/pack.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/pack.js)_
|
|
690
717
|
|
|
691
718
|
## `aio app run`
|
|
692
719
|
|
|
@@ -694,21 +721,23 @@ Run an Adobe I/O App
|
|
|
694
721
|
|
|
695
722
|
```
|
|
696
723
|
USAGE
|
|
697
|
-
$ aio app run [-v] [--version] [--serve] [--actions] [--open] [-e <value>]
|
|
724
|
+
$ aio app run [-v] [--version] [--config-validation] [--serve] [--actions] [--open] [-e <value>]
|
|
698
725
|
|
|
699
726
|
FLAGS
|
|
700
|
-
-e, --extension=<value>
|
|
701
|
-
-v, --verbose
|
|
702
|
-
--[no-]actions
|
|
703
|
-
--
|
|
704
|
-
--
|
|
705
|
-
|
|
727
|
+
-e, --extension=<value> Run only a specific extension, this flag can only be specified once
|
|
728
|
+
-v, --verbose Verbose output
|
|
729
|
+
--[no-]actions [default: true] Run actions, defaults to true, to skip actions use --no-actions
|
|
730
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
731
|
+
--open Open the default web browser after a successful run, only valid if your app has a
|
|
732
|
+
front-end
|
|
733
|
+
--[no-]serve [default: true] Start frontend server (experimental)
|
|
734
|
+
--version Show version
|
|
706
735
|
|
|
707
736
|
DESCRIPTION
|
|
708
737
|
Run an Adobe I/O App
|
|
709
738
|
```
|
|
710
739
|
|
|
711
|
-
_See code: [src/commands/app/run.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
740
|
+
_See code: [src/commands/app/run.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/run.js)_
|
|
712
741
|
|
|
713
742
|
## `aio app test`
|
|
714
743
|
|
|
@@ -716,16 +745,18 @@ Run tests for an Adobe I/O App
|
|
|
716
745
|
|
|
717
746
|
```
|
|
718
747
|
USAGE
|
|
719
|
-
$ aio app test [-v] [--version] [-e <value>... | -a <value>...] [--all] [--e2e]
|
|
748
|
+
$ aio app test [-v] [--version] [--config-validation] [-e <value>... | -a <value>...] [--all] [--e2e]
|
|
749
|
+
[--unit]
|
|
720
750
|
|
|
721
751
|
FLAGS
|
|
722
|
-
-a, --action=<value>...
|
|
723
|
-
-e, --extension=<value>...
|
|
724
|
-
-v, --verbose
|
|
725
|
-
--all
|
|
726
|
-
--
|
|
727
|
-
--
|
|
728
|
-
--
|
|
752
|
+
-a, --action=<value>... the action(s) to test
|
|
753
|
+
-e, --extension=<value>... the extension(s) to test
|
|
754
|
+
-v, --verbose Verbose output
|
|
755
|
+
--all run both unit and e2e tests
|
|
756
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
757
|
+
--e2e run e2e tests
|
|
758
|
+
--unit run unit tests
|
|
759
|
+
--version Show version
|
|
729
760
|
|
|
730
761
|
DESCRIPTION
|
|
731
762
|
Run tests for an Adobe I/O App
|
|
@@ -736,7 +767,7 @@ DESCRIPTION
|
|
|
736
767
|
If the extension has a hook called 'test' in its 'ext.config.yaml', the script specified will be run instead.
|
|
737
768
|
```
|
|
738
769
|
|
|
739
|
-
_See code: [src/commands/app/test.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
770
|
+
_See code: [src/commands/app/test.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/test.js)_
|
|
740
771
|
|
|
741
772
|
## `aio app undeploy`
|
|
742
773
|
|
|
@@ -744,24 +775,25 @@ Undeploys an Adobe I/O App
|
|
|
744
775
|
|
|
745
776
|
```
|
|
746
777
|
USAGE
|
|
747
|
-
$ aio app undeploy [-v] [--version] [--actions] [--events] [--web-assets] [-e <value>...]
|
|
748
|
-
--unpublish]
|
|
778
|
+
$ aio app undeploy [-v] [--version] [--config-validation] [--actions] [--events] [--web-assets] [-e <value>...]
|
|
779
|
+
[--force-unpublish | --unpublish]
|
|
749
780
|
|
|
750
781
|
FLAGS
|
|
751
|
-
-e, --extension=<value>...
|
|
752
|
-
-v, --verbose
|
|
753
|
-
--[no-]actions
|
|
754
|
-
--[no-]
|
|
755
|
-
--
|
|
756
|
-
--
|
|
757
|
-
--
|
|
758
|
-
--
|
|
782
|
+
-e, --extension=<value>... Undeploy only a specific extension, the flags can be specified multiple times
|
|
783
|
+
-v, --verbose Verbose output
|
|
784
|
+
--[no-]actions [default: true] Undeploy actions if any
|
|
785
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
786
|
+
--[no-]events [default: true] Undeploy (unregister) events if any
|
|
787
|
+
--force-unpublish Force unpublish extension(s) from Exchange, will delete all extension points
|
|
788
|
+
--[no-]unpublish [default: true] Unpublish selected extension(s) from Exchange
|
|
789
|
+
--version Show version
|
|
790
|
+
--[no-]web-assets [default: true] Undeploy web-assets if any
|
|
759
791
|
|
|
760
792
|
DESCRIPTION
|
|
761
793
|
Undeploys an Adobe I/O App
|
|
762
794
|
```
|
|
763
795
|
|
|
764
|
-
_See code: [src/commands/app/undeploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
796
|
+
_See code: [src/commands/app/undeploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/undeploy.js)_
|
|
765
797
|
|
|
766
798
|
## `aio app use [CONFIG_FILE_PATH]`
|
|
767
799
|
|
|
@@ -769,8 +801,8 @@ Import an Adobe Developer Console configuration file.
|
|
|
769
801
|
|
|
770
802
|
```
|
|
771
803
|
USAGE
|
|
772
|
-
$ aio app use [CONFIG_FILE_PATH] [-v] [--version] [--overwrite | -m] [-g | -w
|
|
773
|
-
[--confirm-new-workspace] [--no-service-sync | --confirm-service-sync] [--no-input] [--use-jwt]
|
|
804
|
+
$ aio app use [CONFIG_FILE_PATH] [-v] [--version] [--config-validation] [--overwrite | -m] [-g | -w
|
|
805
|
+
<value>] [--confirm-new-workspace] [--no-service-sync | --confirm-service-sync] [--no-input] [--use-jwt]
|
|
774
806
|
|
|
775
807
|
ARGUMENTS
|
|
776
808
|
[CONFIG_FILE_PATH] path to an Adobe I/O Developer Console configuration file
|
|
@@ -783,6 +815,7 @@ FLAGS
|
|
|
783
815
|
-v, --verbose Verbose output
|
|
784
816
|
-w, --workspace=<value> Specify the Adobe Developer Console Workspace name or Workspace id to import the
|
|
785
817
|
configuration from
|
|
818
|
+
--[no-]config-validation [default: true] Validate the app configuration file(s) before continuing.
|
|
786
819
|
--[no-]confirm-new-workspace Prompt to confirm before creating a new workspace
|
|
787
820
|
--confirm-service-sync Skip the Service sync prompt and overwrite Service subscriptions in the new
|
|
788
821
|
Workspace with current subscriptions
|
|
@@ -808,5 +841,5 @@ DESCRIPTION
|
|
|
808
841
|
page in https://developer.adobe.com/console/
|
|
809
842
|
```
|
|
810
843
|
|
|
811
|
-
_See code: [src/commands/app/use.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.
|
|
844
|
+
_See code: [src/commands/app/use.js](https://github.com/adobe/aio-cli-plugin-app/blob/14.4.0/src/commands/app/use.js)_
|
|
812
845
|
<!-- commandsstop -->
|