@adobe/aio-cli-plugin-app 8.4.0 → 8.5.0-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 +169 -146
- package/oclif.manifest.json +1 -1
- package/package.json +13 -12
- package/src/commands/app/config/get/index.js +25 -0
- package/src/commands/app/config/get/log-forwarding/errors.js +46 -0
- package/src/commands/app/config/get/log-forwarding.js +46 -0
- package/src/commands/app/config/index.js +25 -0
- package/src/commands/app/config/set/index.js +25 -0
- package/src/commands/app/config/set/log-forwarding.js +45 -0
- package/src/commands/app/deploy.js +39 -9
- package/src/commands/app/logs.js +10 -1
- package/src/commands/app/run.js +8 -6
- package/src/commands/app/undeploy.js +8 -6
- package/src/lib/deploy-actions.js +1 -1
- package/src/lib/log-forwarding.js +259 -0
package/README.md
CHANGED
|
@@ -35,6 +35,12 @@ $ aio app --help
|
|
|
35
35
|
* [`aio app:add:service`](#aio-appaddservice)
|
|
36
36
|
* [`aio app:add:web-assets`](#aio-appaddweb-assets)
|
|
37
37
|
* [`aio app:build`](#aio-appbuild)
|
|
38
|
+
* [`aio app:config`](#aio-appconfig)
|
|
39
|
+
* [`aio app:config:get`](#aio-appconfigget)
|
|
40
|
+
* [`aio app:config:get:log-forwarding`](#aio-appconfiggetlog-forwarding)
|
|
41
|
+
* [`aio app:config:get:log-forwarding:errors`](#aio-appconfiggetlog-forwardingerrors)
|
|
42
|
+
* [`aio app:config:set`](#aio-appconfigset)
|
|
43
|
+
* [`aio app:config:set:log-forwarding`](#aio-appconfigsetlog-forwarding)
|
|
38
44
|
* [`aio app:create [PATH]`](#aio-appcreate-path)
|
|
39
45
|
* [`aio app:delete`](#aio-appdelete)
|
|
40
46
|
* [`aio app:delete:action [ACTION-NAME]`](#aio-appdeleteaction-action-name)
|
|
@@ -61,8 +67,6 @@ $ aio app --help
|
|
|
61
67
|
Create, run, test, and deploy Adobe I/O Apps
|
|
62
68
|
|
|
63
69
|
```
|
|
64
|
-
Create, run, test, and deploy Adobe I/O Apps
|
|
65
|
-
|
|
66
70
|
USAGE
|
|
67
71
|
$ aio app
|
|
68
72
|
|
|
@@ -71,15 +75,13 @@ OPTIONS
|
|
|
71
75
|
--version Show version
|
|
72
76
|
```
|
|
73
77
|
|
|
74
|
-
_See code: [src/commands/app/index.
|
|
78
|
+
_See code: [src/commands/app/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/index.ts)_
|
|
75
79
|
|
|
76
80
|
## `aio app:add`
|
|
77
81
|
|
|
78
82
|
Add a new component to an existing Adobe I/O App
|
|
79
83
|
|
|
80
84
|
```
|
|
81
|
-
Add a new component to an existing Adobe I/O App
|
|
82
|
-
|
|
83
85
|
USAGE
|
|
84
86
|
$ aio app:add
|
|
85
87
|
|
|
@@ -88,16 +90,13 @@ OPTIONS
|
|
|
88
90
|
--version Show version
|
|
89
91
|
```
|
|
90
92
|
|
|
91
|
-
_See code: [src/commands/app/add/index.
|
|
93
|
+
_See code: [src/commands/app/add/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/add/index.ts)_
|
|
92
94
|
|
|
93
95
|
## `aio app:add:action`
|
|
94
96
|
|
|
95
97
|
Add new actions
|
|
96
98
|
|
|
97
99
|
```
|
|
98
|
-
Add new actions
|
|
99
|
-
|
|
100
|
-
|
|
101
100
|
USAGE
|
|
102
101
|
$ aio app:add:action
|
|
103
102
|
|
|
@@ -113,16 +112,13 @@ ALIASES
|
|
|
113
112
|
$ aio app:add:actions
|
|
114
113
|
```
|
|
115
114
|
|
|
116
|
-
_See code: [src/commands/app/add/action.
|
|
115
|
+
_See code: [src/commands/app/add/action.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/add/action.ts)_
|
|
117
116
|
|
|
118
117
|
## `aio app:add:ci`
|
|
119
118
|
|
|
120
119
|
Add CI files
|
|
121
120
|
|
|
122
121
|
```
|
|
123
|
-
Add CI files
|
|
124
|
-
|
|
125
|
-
|
|
126
122
|
USAGE
|
|
127
123
|
$ aio app:add:ci
|
|
128
124
|
|
|
@@ -131,16 +127,13 @@ OPTIONS
|
|
|
131
127
|
--version Show version
|
|
132
128
|
```
|
|
133
129
|
|
|
134
|
-
_See code: [src/commands/app/add/ci.
|
|
130
|
+
_See code: [src/commands/app/add/ci.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/add/ci.ts)_
|
|
135
131
|
|
|
136
132
|
## `aio app:add:event`
|
|
137
133
|
|
|
138
134
|
Add a new Adobe I/O Events action
|
|
139
135
|
|
|
140
136
|
```
|
|
141
|
-
Add a new Adobe I/O Events action
|
|
142
|
-
|
|
143
|
-
|
|
144
137
|
USAGE
|
|
145
138
|
$ aio app:add:event
|
|
146
139
|
|
|
@@ -156,16 +149,13 @@ ALIASES
|
|
|
156
149
|
$ aio app:add:events
|
|
157
150
|
```
|
|
158
151
|
|
|
159
|
-
_See code: [src/commands/app/add/event.
|
|
152
|
+
_See code: [src/commands/app/add/event.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/add/event.ts)_
|
|
160
153
|
|
|
161
154
|
## `aio app:add:extension`
|
|
162
155
|
|
|
163
156
|
Add new extensions or a standalone application to the project
|
|
164
157
|
|
|
165
158
|
```
|
|
166
|
-
Add new extensions or a standalone application to the project
|
|
167
|
-
|
|
168
|
-
|
|
169
159
|
USAGE
|
|
170
160
|
$ aio app:add:extension
|
|
171
161
|
|
|
@@ -182,16 +172,13 @@ ALIASES
|
|
|
182
172
|
$ aio app:add:extensions
|
|
183
173
|
```
|
|
184
174
|
|
|
185
|
-
_See code: [src/commands/app/add/extension.
|
|
175
|
+
_See code: [src/commands/app/add/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/add/extension.ts)_
|
|
186
176
|
|
|
187
177
|
## `aio app:add:service`
|
|
188
178
|
|
|
189
179
|
Subscribe to Services in the current Workspace
|
|
190
180
|
|
|
191
181
|
```
|
|
192
|
-
Subscribe to Services in the current Workspace
|
|
193
|
-
|
|
194
|
-
|
|
195
182
|
USAGE
|
|
196
183
|
$ aio app:add:service
|
|
197
184
|
|
|
@@ -203,16 +190,13 @@ ALIASES
|
|
|
203
190
|
$ aio app:add:services
|
|
204
191
|
```
|
|
205
192
|
|
|
206
|
-
_See code: [src/commands/app/add/service.
|
|
193
|
+
_See code: [src/commands/app/add/service.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/add/service.ts)_
|
|
207
194
|
|
|
208
195
|
## `aio app:add:web-assets`
|
|
209
196
|
|
|
210
197
|
Add web assets support
|
|
211
198
|
|
|
212
199
|
```
|
|
213
|
-
Add web assets support
|
|
214
|
-
|
|
215
|
-
|
|
216
200
|
USAGE
|
|
217
201
|
$ aio app:add:web-assets
|
|
218
202
|
|
|
@@ -225,18 +209,13 @@ OPTIONS
|
|
|
225
209
|
--version Show version
|
|
226
210
|
```
|
|
227
211
|
|
|
228
|
-
_See code: [src/commands/app/add/web-assets.
|
|
212
|
+
_See code: [src/commands/app/add/web-assets.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/add/web-assets.ts)_
|
|
229
213
|
|
|
230
214
|
## `aio app:build`
|
|
231
215
|
|
|
232
216
|
Build an Adobe I/O App
|
|
233
217
|
|
|
234
218
|
```
|
|
235
|
-
Build an Adobe I/O App
|
|
236
|
-
|
|
237
|
-
This will always force a rebuild unless --no-force-build is set.
|
|
238
|
-
|
|
239
|
-
|
|
240
219
|
USAGE
|
|
241
220
|
$ aio app:build
|
|
242
221
|
|
|
@@ -270,16 +249,125 @@ DESCRIPTION
|
|
|
270
249
|
This will always force a rebuild unless --no-force-build is set.
|
|
271
250
|
```
|
|
272
251
|
|
|
273
|
-
_See code: [src/commands/app/build.
|
|
252
|
+
_See code: [src/commands/app/build.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/build.ts)_
|
|
274
253
|
|
|
275
|
-
## `aio app:
|
|
254
|
+
## `aio app:config`
|
|
276
255
|
|
|
277
|
-
|
|
256
|
+
Manage app config
|
|
278
257
|
|
|
279
258
|
```
|
|
280
|
-
|
|
259
|
+
USAGE
|
|
260
|
+
$ aio app:config
|
|
261
|
+
|
|
262
|
+
OPTIONS
|
|
263
|
+
-v, --verbose Verbose output
|
|
264
|
+
--version Show version
|
|
265
|
+
|
|
266
|
+
ALIASES
|
|
267
|
+
$ aio app:config
|
|
268
|
+
$ aio app:config
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
_See code: [src/commands/app/config/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/config/index.ts)_
|
|
272
|
+
|
|
273
|
+
## `aio app:config:get`
|
|
274
|
+
|
|
275
|
+
Get app config
|
|
276
|
+
|
|
277
|
+
```
|
|
278
|
+
USAGE
|
|
279
|
+
$ aio app:config:get
|
|
280
|
+
|
|
281
|
+
OPTIONS
|
|
282
|
+
-v, --verbose Verbose output
|
|
283
|
+
--version Show version
|
|
284
|
+
|
|
285
|
+
ALIASES
|
|
286
|
+
$ aio app:config:get
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
_See code: [src/commands/app/config/get/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/config/get/index.ts)_
|
|
290
|
+
|
|
291
|
+
## `aio app:config:get:log-forwarding`
|
|
292
|
+
|
|
293
|
+
Get log forwarding destination configuration
|
|
294
|
+
|
|
295
|
+
```
|
|
296
|
+
USAGE
|
|
297
|
+
$ aio app:config:get:log-forwarding
|
|
298
|
+
|
|
299
|
+
OPTIONS
|
|
300
|
+
-v, --verbose Verbose output
|
|
301
|
+
--version Show version
|
|
302
|
+
|
|
303
|
+
ALIASES
|
|
304
|
+
$ aio app:config:get:log-forwarding
|
|
305
|
+
$ aio app:config:get:lf
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
_See code: [src/commands/app/config/get/log-forwarding.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/config/get/log-forwarding.ts)_
|
|
309
|
+
|
|
310
|
+
## `aio app:config:get:log-forwarding:errors`
|
|
311
|
+
|
|
312
|
+
Get log forwarding errors
|
|
281
313
|
|
|
314
|
+
```
|
|
315
|
+
USAGE
|
|
316
|
+
$ aio app:config:get:log-forwarding:errors
|
|
317
|
+
|
|
318
|
+
OPTIONS
|
|
319
|
+
-v, --verbose Verbose output
|
|
320
|
+
--version Show version
|
|
321
|
+
|
|
322
|
+
ALIASES
|
|
323
|
+
$ aio app:config:get:log-forwarding:errors
|
|
324
|
+
$ aio app:config:get:lf:errors
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
_See code: [src/commands/app/config/get/log-forwarding/errors.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/config/get/log-forwarding/errors.ts)_
|
|
328
|
+
|
|
329
|
+
## `aio app:config:set`
|
|
282
330
|
|
|
331
|
+
Set app config
|
|
332
|
+
|
|
333
|
+
```
|
|
334
|
+
USAGE
|
|
335
|
+
$ aio app:config:set
|
|
336
|
+
|
|
337
|
+
OPTIONS
|
|
338
|
+
-v, --verbose Verbose output
|
|
339
|
+
--version Show version
|
|
340
|
+
|
|
341
|
+
ALIASES
|
|
342
|
+
$ aio app:config:set
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
_See code: [src/commands/app/config/set/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/config/set/index.ts)_
|
|
346
|
+
|
|
347
|
+
## `aio app:config:set:log-forwarding`
|
|
348
|
+
|
|
349
|
+
Set log forwarding destination configuration
|
|
350
|
+
|
|
351
|
+
```
|
|
352
|
+
USAGE
|
|
353
|
+
$ aio app:config:set:log-forwarding
|
|
354
|
+
|
|
355
|
+
OPTIONS
|
|
356
|
+
-v, --verbose Verbose output
|
|
357
|
+
--version Show version
|
|
358
|
+
|
|
359
|
+
ALIASES
|
|
360
|
+
$ aio app:config:set:log-forwarding
|
|
361
|
+
$ aio app:config:set:lf
|
|
362
|
+
```
|
|
363
|
+
|
|
364
|
+
_See code: [src/commands/app/config/set/log-forwarding.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/config/set/log-forwarding.ts)_
|
|
365
|
+
|
|
366
|
+
## `aio app:create [PATH]`
|
|
367
|
+
|
|
368
|
+
Create a new Adobe I/O App with default parameters
|
|
369
|
+
|
|
370
|
+
```
|
|
283
371
|
USAGE
|
|
284
372
|
$ aio app:create [PATH]
|
|
285
373
|
|
|
@@ -292,15 +380,13 @@ OPTIONS
|
|
|
292
380
|
--version Show version
|
|
293
381
|
```
|
|
294
382
|
|
|
295
|
-
_See code: [src/commands/app/create.
|
|
383
|
+
_See code: [src/commands/app/create.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/create.ts)_
|
|
296
384
|
|
|
297
385
|
## `aio app:delete`
|
|
298
386
|
|
|
299
387
|
Delete a component from an existing Adobe I/O App
|
|
300
388
|
|
|
301
389
|
```
|
|
302
|
-
Delete a component from an existing Adobe I/O App
|
|
303
|
-
|
|
304
390
|
USAGE
|
|
305
391
|
$ aio app:delete
|
|
306
392
|
|
|
@@ -309,16 +395,13 @@ OPTIONS
|
|
|
309
395
|
--version Show version
|
|
310
396
|
```
|
|
311
397
|
|
|
312
|
-
_See code: [src/commands/app/delete/index.
|
|
398
|
+
_See code: [src/commands/app/delete/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/delete/index.ts)_
|
|
313
399
|
|
|
314
400
|
## `aio app:delete:action [ACTION-NAME]`
|
|
315
401
|
|
|
316
402
|
Delete existing actions
|
|
317
403
|
|
|
318
404
|
```
|
|
319
|
-
Delete existing actions
|
|
320
|
-
|
|
321
|
-
|
|
322
405
|
USAGE
|
|
323
406
|
$ aio app:delete:action [ACTION-NAME]
|
|
324
407
|
|
|
@@ -334,16 +417,13 @@ ALIASES
|
|
|
334
417
|
$ aio app:delete:actions
|
|
335
418
|
```
|
|
336
419
|
|
|
337
|
-
_See code: [src/commands/app/delete/action.
|
|
420
|
+
_See code: [src/commands/app/delete/action.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/delete/action.ts)_
|
|
338
421
|
|
|
339
422
|
## `aio app:delete:ci`
|
|
340
423
|
|
|
341
424
|
Delete existing CI files
|
|
342
425
|
|
|
343
426
|
```
|
|
344
|
-
Delete existing CI files
|
|
345
|
-
|
|
346
|
-
|
|
347
427
|
USAGE
|
|
348
428
|
$ aio app:delete:ci
|
|
349
429
|
|
|
@@ -353,16 +433,13 @@ OPTIONS
|
|
|
353
433
|
--version Show version
|
|
354
434
|
```
|
|
355
435
|
|
|
356
|
-
_See code: [src/commands/app/delete/ci.
|
|
436
|
+
_See code: [src/commands/app/delete/ci.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/delete/ci.ts)_
|
|
357
437
|
|
|
358
438
|
## `aio app:delete:event [EVENT-ACTION-NAME]`
|
|
359
439
|
|
|
360
440
|
Delete existing Adobe I/O Events actions
|
|
361
441
|
|
|
362
442
|
```
|
|
363
|
-
Delete existing Adobe I/O Events actions
|
|
364
|
-
|
|
365
|
-
|
|
366
443
|
USAGE
|
|
367
444
|
$ aio app:delete:event [EVENT-ACTION-NAME]
|
|
368
445
|
|
|
@@ -378,16 +455,13 @@ ALIASES
|
|
|
378
455
|
$ aio app:delete:events
|
|
379
456
|
```
|
|
380
457
|
|
|
381
|
-
_See code: [src/commands/app/delete/event.
|
|
458
|
+
_See code: [src/commands/app/delete/event.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/delete/event.ts)_
|
|
382
459
|
|
|
383
460
|
## `aio app:delete:extension`
|
|
384
461
|
|
|
385
462
|
Add new extensions or a standalone application to the project
|
|
386
463
|
|
|
387
464
|
```
|
|
388
|
-
Add new extensions or a standalone application to the project
|
|
389
|
-
|
|
390
|
-
|
|
391
465
|
USAGE
|
|
392
466
|
$ aio app:delete:extension
|
|
393
467
|
|
|
@@ -403,16 +477,13 @@ ALIASES
|
|
|
403
477
|
$ aio app:delete:extensions
|
|
404
478
|
```
|
|
405
479
|
|
|
406
|
-
_See code: [src/commands/app/delete/extension.
|
|
480
|
+
_See code: [src/commands/app/delete/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/delete/extension.ts)_
|
|
407
481
|
|
|
408
482
|
## `aio app:delete:service`
|
|
409
483
|
|
|
410
484
|
Delete Services in the current Workspace
|
|
411
485
|
|
|
412
486
|
```
|
|
413
|
-
Delete Services in the current Workspace
|
|
414
|
-
|
|
415
|
-
|
|
416
487
|
USAGE
|
|
417
488
|
$ aio app:delete:service
|
|
418
489
|
|
|
@@ -424,16 +495,13 @@ ALIASES
|
|
|
424
495
|
$ aio app:delete:services
|
|
425
496
|
```
|
|
426
497
|
|
|
427
|
-
_See code: [src/commands/app/delete/service.
|
|
498
|
+
_See code: [src/commands/app/delete/service.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/delete/service.ts)_
|
|
428
499
|
|
|
429
500
|
## `aio app:delete:web-assets`
|
|
430
501
|
|
|
431
502
|
Delete existing web assets
|
|
432
503
|
|
|
433
504
|
```
|
|
434
|
-
Delete existing web assets
|
|
435
|
-
|
|
436
|
-
|
|
437
505
|
USAGE
|
|
438
506
|
$ aio app:delete:web-assets
|
|
439
507
|
|
|
@@ -443,73 +511,68 @@ OPTIONS
|
|
|
443
511
|
--version Show version
|
|
444
512
|
```
|
|
445
513
|
|
|
446
|
-
_See code: [src/commands/app/delete/web-assets.
|
|
514
|
+
_See code: [src/commands/app/delete/web-assets.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/delete/web-assets.ts)_
|
|
447
515
|
|
|
448
516
|
## `aio app:deploy`
|
|
449
517
|
|
|
450
518
|
Build and deploy an Adobe I/O App
|
|
451
519
|
|
|
452
520
|
```
|
|
453
|
-
Build and deploy an Adobe I/O App
|
|
454
|
-
|
|
455
|
-
This will always force a rebuild unless --no-force-build is set.
|
|
456
|
-
|
|
457
|
-
|
|
458
521
|
USAGE
|
|
459
522
|
$ aio app:deploy
|
|
460
523
|
|
|
461
524
|
OPTIONS
|
|
462
|
-
-a, --action=action
|
|
463
|
-
|
|
525
|
+
-a, --action=action Deploy only a specific action, the flags can be specified multiple times, this will set
|
|
526
|
+
--no-publish
|
|
464
527
|
|
|
465
|
-
-e, --extension=extension
|
|
528
|
+
-e, --extension=extension Deploy only a specific extension, the flags can be specified multiple times
|
|
466
529
|
|
|
467
|
-
-v, --verbose
|
|
530
|
+
-v, --verbose Verbose output
|
|
468
531
|
|
|
469
|
-
--[no-]actions
|
|
532
|
+
--[no-]actions [default: true] Deploy actions if any
|
|
470
533
|
|
|
471
|
-
--[no-]build
|
|
534
|
+
--[no-]build [default: true] Run the build phase before deployment
|
|
472
535
|
|
|
473
|
-
--[no-]content-hash
|
|
536
|
+
--[no-]content-hash [default: true] Enable content hashing in browser code
|
|
474
537
|
|
|
475
|
-
--[no-]force-build
|
|
538
|
+
--[no-]force-build [default: true] Force a build even if one already exists
|
|
476
539
|
|
|
477
|
-
--force-publish
|
|
540
|
+
--force-publish Force publish extension(s) to Exchange, delete previously published extension points
|
|
478
541
|
|
|
479
|
-
--
|
|
480
|
-
front-end
|
|
542
|
+
--[no-]log-forwarding-update [default: true] Update log forwarding configuration on server
|
|
481
543
|
|
|
482
|
-
--
|
|
544
|
+
--open Open the default web browser after a successful deploy, only valid if your app has a
|
|
545
|
+
front-end
|
|
483
546
|
|
|
484
|
-
--
|
|
547
|
+
--[no-]publish [default: true] Publish extension(s) to Exchange
|
|
485
548
|
|
|
486
|
-
--skip-
|
|
549
|
+
--skip-actions [deprecated] Please use --no-actions
|
|
487
550
|
|
|
488
|
-
--skip-
|
|
551
|
+
--skip-build [deprecated] Please use --no-build
|
|
489
552
|
|
|
490
|
-
--skip-
|
|
553
|
+
--skip-deploy [deprecated] Please use 'aio app build'
|
|
491
554
|
|
|
492
|
-
--skip-
|
|
555
|
+
--skip-static [deprecated] Please use --no-web-assets
|
|
493
556
|
|
|
494
|
-
--
|
|
557
|
+
--skip-web-assets [deprecated] Please use --no-web-assets
|
|
558
|
+
|
|
559
|
+
--version Show version
|
|
495
560
|
|
|
496
|
-
--[no-]web-assets
|
|
561
|
+
--[no-]web-assets [default: true] Deploy web-assets if any
|
|
497
562
|
|
|
498
|
-
--web-optimize
|
|
563
|
+
--web-optimize [default: false] Enable optimization (minification) of web js/css/html
|
|
499
564
|
|
|
500
565
|
DESCRIPTION
|
|
501
566
|
This will always force a rebuild unless --no-force-build is set.
|
|
502
567
|
```
|
|
503
568
|
|
|
504
|
-
_See code: [src/commands/app/deploy.
|
|
569
|
+
_See code: [src/commands/app/deploy.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/deploy.ts)_
|
|
505
570
|
|
|
506
571
|
## `aio app:get-url [ACTION]`
|
|
507
572
|
|
|
508
573
|
Get action URLs
|
|
509
574
|
|
|
510
575
|
```
|
|
511
|
-
Get action URLs
|
|
512
|
-
|
|
513
576
|
USAGE
|
|
514
577
|
$ aio app:get-url [ACTION]
|
|
515
578
|
|
|
@@ -522,16 +585,13 @@ OPTIONS
|
|
|
522
585
|
--version Show version
|
|
523
586
|
```
|
|
524
587
|
|
|
525
|
-
_See code: [src/commands/app/get-url.
|
|
588
|
+
_See code: [src/commands/app/get-url.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/get-url.ts)_
|
|
526
589
|
|
|
527
590
|
## `aio app:info`
|
|
528
591
|
|
|
529
592
|
Display settings/configuration in use by an Adobe I/O App
|
|
530
593
|
|
|
531
594
|
```
|
|
532
|
-
Display settings/configuration in use by an Adobe I/O App
|
|
533
|
-
|
|
534
|
-
|
|
535
595
|
USAGE
|
|
536
596
|
$ aio app:info
|
|
537
597
|
|
|
@@ -544,16 +604,13 @@ OPTIONS
|
|
|
544
604
|
--version Show version
|
|
545
605
|
```
|
|
546
606
|
|
|
547
|
-
_See code: [src/commands/app/info.
|
|
607
|
+
_See code: [src/commands/app/info.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/info.ts)_
|
|
548
608
|
|
|
549
609
|
## `aio app:init [PATH]`
|
|
550
610
|
|
|
551
611
|
Create a new Adobe I/O App
|
|
552
612
|
|
|
553
613
|
```
|
|
554
|
-
Create a new Adobe I/O App
|
|
555
|
-
|
|
556
|
-
|
|
557
614
|
USAGE
|
|
558
615
|
$ aio app:init [PATH]
|
|
559
616
|
|
|
@@ -582,15 +639,13 @@ OPTIONS
|
|
|
582
639
|
--version Show version
|
|
583
640
|
```
|
|
584
641
|
|
|
585
|
-
_See code: [src/commands/app/init.
|
|
642
|
+
_See code: [src/commands/app/init.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/init.ts)_
|
|
586
643
|
|
|
587
644
|
## `aio app:list`
|
|
588
645
|
|
|
589
646
|
List components for Adobe I/O App
|
|
590
647
|
|
|
591
648
|
```
|
|
592
|
-
List components for Adobe I/O App
|
|
593
|
-
|
|
594
649
|
USAGE
|
|
595
650
|
$ aio app:list
|
|
596
651
|
|
|
@@ -599,16 +654,13 @@ OPTIONS
|
|
|
599
654
|
--version Show version
|
|
600
655
|
```
|
|
601
656
|
|
|
602
|
-
_See code: [src/commands/app/list/index.
|
|
657
|
+
_See code: [src/commands/app/list/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/list/index.ts)_
|
|
603
658
|
|
|
604
659
|
## `aio app:list:extension`
|
|
605
660
|
|
|
606
661
|
List implemented extensions
|
|
607
662
|
|
|
608
663
|
```
|
|
609
|
-
List implemented extensions
|
|
610
|
-
|
|
611
|
-
|
|
612
664
|
USAGE
|
|
613
665
|
$ aio app:list:extension
|
|
614
666
|
|
|
@@ -623,16 +675,13 @@ ALIASES
|
|
|
623
675
|
$ aio app:list:extensions
|
|
624
676
|
```
|
|
625
677
|
|
|
626
|
-
_See code: [src/commands/app/list/extension.
|
|
678
|
+
_See code: [src/commands/app/list/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/list/extension.ts)_
|
|
627
679
|
|
|
628
680
|
## `aio app:list:extension-points`
|
|
629
681
|
|
|
630
682
|
List all extension points for the selected org
|
|
631
683
|
|
|
632
684
|
```
|
|
633
|
-
List all extension points for the selected org
|
|
634
|
-
|
|
635
|
-
|
|
636
685
|
USAGE
|
|
637
686
|
$ aio app:list:extension-points
|
|
638
687
|
|
|
@@ -647,16 +696,13 @@ ALIASES
|
|
|
647
696
|
$ aio app:list:extension-points
|
|
648
697
|
```
|
|
649
698
|
|
|
650
|
-
_See code: [src/commands/app/list/extension-points.
|
|
699
|
+
_See code: [src/commands/app/list/extension-points.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/list/extension-points.ts)_
|
|
651
700
|
|
|
652
701
|
## `aio app:logs`
|
|
653
702
|
|
|
654
703
|
Fetch logs for an Adobe I/O App
|
|
655
704
|
|
|
656
705
|
```
|
|
657
|
-
Fetch logs for an Adobe I/O App
|
|
658
|
-
|
|
659
|
-
|
|
660
706
|
USAGE
|
|
661
707
|
$ aio app:logs
|
|
662
708
|
|
|
@@ -671,15 +717,13 @@ OPTIONS
|
|
|
671
717
|
--version Show version
|
|
672
718
|
```
|
|
673
719
|
|
|
674
|
-
_See code: [src/commands/app/logs.
|
|
720
|
+
_See code: [src/commands/app/logs.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/logs.ts)_
|
|
675
721
|
|
|
676
722
|
## `aio app:run`
|
|
677
723
|
|
|
678
724
|
Run an Adobe I/O App
|
|
679
725
|
|
|
680
726
|
```
|
|
681
|
-
Run an Adobe I/O App
|
|
682
|
-
|
|
683
727
|
USAGE
|
|
684
728
|
$ aio app:run
|
|
685
729
|
|
|
@@ -694,22 +738,13 @@ OPTIONS
|
|
|
694
738
|
--version Show version
|
|
695
739
|
```
|
|
696
740
|
|
|
697
|
-
_See code: [src/commands/app/run.
|
|
741
|
+
_See code: [src/commands/app/run.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/run.ts)_
|
|
698
742
|
|
|
699
743
|
## `aio app:test`
|
|
700
744
|
|
|
701
745
|
Run tests for an Adobe I/O App
|
|
702
746
|
|
|
703
747
|
```
|
|
704
|
-
Run tests for an Adobe I/O App
|
|
705
|
-
If no flags are specified, by default only unit-tests are run.
|
|
706
|
-
|
|
707
|
-
For the --action flag, it tries a substring search on the 'package-name/action-name' pair for an action.
|
|
708
|
-
For the --extension flag, it tries a substring search on the 'extension-name' only.
|
|
709
|
-
If the extension has a hook called 'test' in its 'ext.config.yaml', the script specified will be run instead.
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
748
|
USAGE
|
|
714
749
|
$ aio app:test
|
|
715
750
|
|
|
@@ -728,16 +763,13 @@ DESCRIPTION
|
|
|
728
763
|
If the extension has a hook called 'test' in its 'ext.config.yaml', the script specified will be run instead.
|
|
729
764
|
```
|
|
730
765
|
|
|
731
|
-
_See code: [src/commands/app/test.
|
|
766
|
+
_See code: [src/commands/app/test.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/test.ts)_
|
|
732
767
|
|
|
733
768
|
## `aio app:undeploy`
|
|
734
769
|
|
|
735
770
|
Undeploys an Adobe I/O App
|
|
736
771
|
|
|
737
772
|
```
|
|
738
|
-
Undeploys an Adobe I/O App
|
|
739
|
-
|
|
740
|
-
|
|
741
773
|
USAGE
|
|
742
774
|
$ aio app:undeploy
|
|
743
775
|
|
|
@@ -754,22 +786,13 @@ OPTIONS
|
|
|
754
786
|
--[no-]web-assets [default: true] Undeploy web-assets if any
|
|
755
787
|
```
|
|
756
788
|
|
|
757
|
-
_See code: [src/commands/app/undeploy.
|
|
789
|
+
_See code: [src/commands/app/undeploy.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/undeploy.ts)_
|
|
758
790
|
|
|
759
791
|
## `aio app:use [CONFIG_FILE_PATH]`
|
|
760
792
|
|
|
761
793
|
Import an Adobe Developer Console configuration file.
|
|
762
794
|
|
|
763
795
|
```
|
|
764
|
-
Import an Adobe Developer Console configuration file.
|
|
765
|
-
|
|
766
|
-
If the optional configuration file is not set, this command will retrieve the console org, project, and workspace settings from the global config.
|
|
767
|
-
|
|
768
|
-
To set these global config values, see the help text for 'aio console --help'.
|
|
769
|
-
|
|
770
|
-
To download the configuration file for your project, select the 'Download' button in the toolbar of your project's page in https://console.adobe.io
|
|
771
|
-
|
|
772
|
-
|
|
773
796
|
USAGE
|
|
774
797
|
$ aio app:use [CONFIG_FILE_PATH]
|
|
775
798
|
|
|
@@ -816,5 +839,5 @@ DESCRIPTION
|
|
|
816
839
|
page in https://console.adobe.io
|
|
817
840
|
```
|
|
818
841
|
|
|
819
|
-
_See code: [src/commands/app/use.
|
|
842
|
+
_See code: [src/commands/app/use.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.0-0/src/commands/app/use.ts)_
|
|
820
843
|
<!-- commandsstop -->
|