@mittwald/cli 1.0.0-alpha.32 → 1.0.0-alpha.34

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.
Files changed (91) hide show
  1. package/README.md +489 -446
  2. package/dist/esm/ExtendedBaseCommand.d.ts +1 -1
  3. package/dist/esm/ListBaseCommand.d.ts +4 -1
  4. package/dist/esm/ListBaseCommand.js +9 -4
  5. package/dist/esm/commands/app/copy.d.ts +0 -1
  6. package/dist/esm/commands/app/create/node.d.ts +2 -2
  7. package/dist/esm/commands/app/create/node.js +5 -1
  8. package/dist/esm/commands/app/dependency/list.js +2 -2
  9. package/dist/esm/commands/app/dependency/update.d.ts +0 -1
  10. package/dist/esm/commands/app/download.d.ts +16 -0
  11. package/dist/esm/commands/app/download.js +81 -0
  12. package/dist/esm/commands/app/get.d.ts +0 -1
  13. package/dist/esm/commands/app/get.js +1 -1
  14. package/dist/esm/commands/app/list.d.ts +1 -1
  15. package/dist/esm/commands/app/list.js +5 -10
  16. package/dist/esm/commands/app/ssh.d.ts +1 -1
  17. package/dist/esm/commands/app/ssh.js +18 -26
  18. package/dist/esm/commands/app/uninstall.d.ts +0 -1
  19. package/dist/esm/commands/app/versions.js +1 -1
  20. package/dist/esm/commands/backup/list.js +3 -3
  21. package/dist/esm/commands/backup/schedule/list.js +3 -3
  22. package/dist/esm/commands/context/reset.d.ts +6 -0
  23. package/dist/esm/commands/context/reset.js +9 -0
  24. package/dist/esm/commands/context/set.js +5 -6
  25. package/dist/esm/commands/conversation/close.js +2 -2
  26. package/dist/esm/commands/conversation/list.js +2 -2
  27. package/dist/esm/commands/conversation/reply.js +2 -2
  28. package/dist/esm/commands/conversation/show.js +2 -2
  29. package/dist/esm/commands/cronjob/create.d.ts +0 -1
  30. package/dist/esm/commands/cronjob/list.js +4 -4
  31. package/dist/esm/commands/database/mysql/delete.js +2 -2
  32. package/dist/esm/commands/database/mysql/dump.d.ts +3 -0
  33. package/dist/esm/commands/database/mysql/dump.js +56 -36
  34. package/dist/esm/commands/database/mysql/list.js +6 -7
  35. package/dist/esm/commands/database/mysql/user/delete.d.ts +13 -0
  36. package/dist/esm/commands/database/mysql/user/delete.js +21 -0
  37. package/dist/esm/commands/database/mysql/user/list.js +6 -4
  38. package/dist/esm/commands/database/redis/list.js +6 -4
  39. package/dist/esm/commands/mail/address/list.d.ts +0 -2
  40. package/dist/esm/commands/mail/address/list.js +1 -7
  41. package/dist/esm/commands/org/list.d.ts +1 -1
  42. package/dist/esm/commands/org/list.js +6 -6
  43. package/dist/esm/commands/project/list.js +5 -8
  44. package/dist/esm/commands/server/list.js +4 -4
  45. package/dist/esm/commands/sftp-user/list.js +6 -4
  46. package/dist/esm/commands/ssh-user/list.js +6 -4
  47. package/dist/esm/lib/app/Installer.d.ts +1 -0
  48. package/dist/esm/lib/app/Installer.js +6 -1
  49. package/dist/esm/lib/app/flags.d.ts +2 -2
  50. package/dist/esm/lib/app/flags.js +58 -56
  51. package/dist/esm/lib/app/uuid.d.ts +39 -3
  52. package/dist/esm/lib/app/uuid.js +66 -33
  53. package/dist/esm/lib/context.d.ts +2 -0
  54. package/dist/esm/lib/context.js +7 -0
  55. package/dist/esm/lib/context_user.d.ts +1 -0
  56. package/dist/esm/lib/context_user.js +15 -1
  57. package/dist/esm/lib/database/mysql/connect.d.ts +4 -1
  58. package/dist/esm/lib/database/mysql/connect.js +2 -1
  59. package/dist/esm/lib/database/mysql/flags.js +1 -1
  60. package/dist/esm/lib/database/redis/flags.js +1 -1
  61. package/dist/esm/lib/domain/dnszone/flags.js +1 -1
  62. package/dist/esm/lib/domain/flags.js +1 -1
  63. package/dist/esm/lib/hasbin.d.ts +1 -0
  64. package/dist/esm/lib/hasbin.js +17 -0
  65. package/dist/esm/lib/org/flags.js +2 -2
  66. package/dist/esm/lib/project/flags.js +2 -2
  67. package/dist/esm/lib/project/ingress.js +2 -2
  68. package/dist/esm/lib/server/flags.js +2 -2
  69. package/dist/esm/lib/ssh/appinstall.d.ts +3 -0
  70. package/dist/esm/lib/ssh/appinstall.js +25 -0
  71. package/dist/esm/lib/ssh/exec.d.ts +8 -0
  72. package/dist/esm/lib/ssh/exec.js +41 -0
  73. package/dist/esm/lib/ssh/project.d.ts +3 -0
  74. package/dist/esm/lib/ssh/project.js +15 -0
  75. package/dist/esm/lib/ssh/types.d.ts +5 -0
  76. package/dist/esm/lib/ssh/types.js +1 -0
  77. package/dist/esm/normalize_id.d.ts +7 -0
  78. package/dist/esm/normalize_id.js +34 -0
  79. package/dist/esm/rendering/process/components/ProcessState.js +1 -1
  80. package/dist/esm/rendering/process/process.d.ts +13 -2
  81. package/dist/esm/rendering/process/process.js +18 -0
  82. package/dist/esm/rendering/process/process_fancy.d.ts +5 -2
  83. package/dist/esm/rendering/process/process_fancy.js +21 -4
  84. package/dist/esm/rendering/process/process_quiet.d.ts +5 -2
  85. package/dist/esm/rendering/process/process_quiet.js +13 -2
  86. package/dist/esm/rendering/react/RenderBaseCommand.d.ts +1 -1
  87. package/package.json +1 -1
  88. package/dist/esm/Helpers.d.ts +0 -7
  89. package/dist/esm/Helpers.js +0 -36
  90. package/dist/esm/Translator.d.ts +0 -9
  91. package/dist/esm/Translator.js +0 -74
package/README.md CHANGED
@@ -120,6 +120,7 @@ USAGE
120
120
  * [`mw app dependency list`](#mw-app-dependency-list)
121
121
  * [`mw app dependency update [INSTALLATION-ID]`](#mw-app-dependency-update-installation-id)
122
122
  * [`mw app dependency versions SYSTEMSOFTWARE`](#mw-app-dependency-versions-systemsoftware)
123
+ * [`mw app download [INSTALLATION-ID]`](#mw-app-download-installation-id)
123
124
  * [`mw app get [INSTALLATION-ID]`](#mw-app-get-installation-id)
124
125
  * [`mw app install contao`](#mw-app-install-contao)
125
126
  * [`mw app install drupal`](#mw-app-install-drupal)
@@ -143,6 +144,7 @@ USAGE
143
144
  * [`mw backup list`](#mw-backup-list)
144
145
  * [`mw backup schedule list`](#mw-backup-schedule-list)
145
146
  * [`mw context get`](#mw-context-get)
147
+ * [`mw context reset`](#mw-context-reset)
146
148
  * [`mw context set`](#mw-context-set)
147
149
  * [`mw conversation categories`](#mw-conversation-categories)
148
150
  * [`mw conversation close ID`](#mw-conversation-close-id)
@@ -169,6 +171,7 @@ USAGE
169
171
  * [`mw database mysql phpmyadmin DATABASE-ID`](#mw-database-mysql-phpmyadmin-database-id)
170
172
  * [`mw database mysql port-forward DATABASE-ID`](#mw-database-mysql-port-forward-database-id)
171
173
  * [`mw database mysql shell DATABASE-ID`](#mw-database-mysql-shell-database-id)
174
+ * [`mw database mysql user delete USER-ID`](#mw-database-mysql-user-delete-user-id)
172
175
  * [`mw database mysql user get ID`](#mw-database-mysql-user-get-id)
173
176
  * [`mw database mysql user list`](#mw-database-mysql-user-list)
174
177
  * [`mw database mysql versions`](#mw-database-mysql-versions)
@@ -281,15 +284,16 @@ Creates new custom Node.js installation.
281
284
 
282
285
  ```
283
286
  USAGE
284
- $ mw app create node [-p <value>] [-q] [--site-title <value>] [-w] [--json]
287
+ $ mw app create node [-p <value>] [-q] [--site-title <value>] [-w] [--entrypoint <value>]
285
288
 
286
289
  FLAGS
287
290
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
288
291
  context
289
292
  -q, --quiet suppress process output and only display a machine-readable summary.
290
- -w, --wait Wait for your custom Node.js to be ready.
291
- --json
292
- --site-title=<value> Site Title for your custom Node.js installation.
293
+ -w, --wait wait for your custom Node.js to be ready.
294
+ --entrypoint=<value> [default: yarn start] the command that should be used to start your custom Node.js
295
+ application.
296
+ --site-title=<value> site title for your custom Node.js installation.
293
297
 
294
298
  DESCRIPTION
295
299
  Creates new custom Node.js installation.
@@ -305,11 +309,16 @@ FLAG DESCRIPTIONS
305
309
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
306
310
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
307
311
 
308
- --site-title=<value> Site Title for your custom Node.js installation.
312
+ --entrypoint=<value> the command that should be used to start your custom Node.js application.
309
313
 
310
- Site Title which will be displayed in the Tab and at the top of the Frontend of your custom Node.js installation.
311
- It is also the Title shown in the App-Overview in the mStudio.
312
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
314
+ This is the command that should be used to start your application; the app is required to run in the foreground, and
315
+ to listen on the port specified by the PORT environment variable.
316
+
317
+ --site-title=<value> site title for your custom Node.js installation.
318
+
319
+ The site title for this custom Node.js installation. It is also the title shown in the app overview in the mStudio
320
+ and the CLI.
321
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
313
322
  installation is finished
314
323
  ```
315
324
 
@@ -319,17 +328,16 @@ Creates new custom PHP installation.
319
328
 
320
329
  ```
321
330
  USAGE
322
- $ mw app create php --document-root <value> [-p <value>] [-q] [--site-title <value>] [-w] [--json]
331
+ $ mw app create php --document-root <value> [-p <value>] [-q] [--site-title <value>] [-w]
323
332
 
324
333
  FLAGS
325
334
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
326
335
  context
327
336
  -q, --quiet suppress process output and only display a machine-readable summary.
328
- -w, --wait Wait for your custom PHP to be ready.
329
- --document-root=<value> (required) [default: /] The document root from which your custom PHP will be served
337
+ -w, --wait wait for your custom PHP to be ready.
338
+ --document-root=<value> (required) [default: /] the document root from which your custom PHP will be served
330
339
  (relative to the installation path)
331
- --json
332
- --site-title=<value> Site Title for your custom PHP installation.
340
+ --site-title=<value> site title for your custom PHP installation.
333
341
 
334
342
  DESCRIPTION
335
343
  Creates new custom PHP installation.
@@ -347,16 +355,16 @@ FLAG DESCRIPTIONS
347
355
 
348
356
  --document-root=<value>
349
357
 
350
- The document root from which your custom PHP will be served (relative to the installation path)
358
+ the document root from which your custom PHP will be served (relative to the installation path)
351
359
 
352
360
  This is the document root from which the files of your application will be served by the web server. This directory
353
361
  is specified relative to the installation path.
354
362
 
355
- --site-title=<value> Site Title for your custom PHP installation.
363
+ --site-title=<value> site title for your custom PHP installation.
356
364
 
357
- Site Title which will be displayed in the Tab and at the top of the Frontend of your custom PHP installation.
358
- It is also the Title shown in the App-Overview in the mStudio.
359
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
365
+ The site title for this custom PHP installation. It is also the title shown in the app overview in the mStudio and
366
+ the CLI.
367
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
360
368
  installation is finished
361
369
  ```
362
370
 
@@ -366,17 +374,16 @@ Creates new custom python site installation.
366
374
 
367
375
  ```
368
376
  USAGE
369
- $ mw app create python --document-root <value> [-p <value>] [-q] [--site-title <value>] [-w] [--json]
377
+ $ mw app create python --document-root <value> [-p <value>] [-q] [--site-title <value>] [-w]
370
378
 
371
379
  FLAGS
372
380
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
373
381
  context
374
382
  -q, --quiet suppress process output and only display a machine-readable summary.
375
- -w, --wait Wait for your custom python site to be ready.
376
- --document-root=<value> (required) [default: /] The document root from which your custom python site will be
383
+ -w, --wait wait for your custom python site to be ready.
384
+ --document-root=<value> (required) [default: /] the document root from which your custom python site will be
377
385
  served (relative to the installation path)
378
- --json
379
- --site-title=<value> Site Title for your custom python site installation.
386
+ --site-title=<value> site title for your custom python site installation.
380
387
 
381
388
  DESCRIPTION
382
389
  Creates new custom python site installation.
@@ -394,17 +401,16 @@ FLAG DESCRIPTIONS
394
401
 
395
402
  --document-root=<value>
396
403
 
397
- The document root from which your custom python site will be served (relative to the installation path)
404
+ the document root from which your custom python site will be served (relative to the installation path)
398
405
 
399
406
  This is the document root from which the files of your application will be served by the web server. This directory
400
407
  is specified relative to the installation path.
401
408
 
402
- --site-title=<value> Site Title for your custom python site installation.
409
+ --site-title=<value> site title for your custom python site installation.
403
410
 
404
- Site Title which will be displayed in the Tab and at the top of the Frontend of your custom python site
405
- installation.
406
- It is also the Title shown in the App-Overview in the mStudio.
407
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
411
+ The site title for this custom python site installation. It is also the title shown in the app overview in the
412
+ mStudio and the CLI.
413
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
408
414
  installation is finished
409
415
  ```
410
416
 
@@ -414,17 +420,16 @@ Creates new custom static site installation.
414
420
 
415
421
  ```
416
422
  USAGE
417
- $ mw app create static --document-root <value> [-p <value>] [-q] [--site-title <value>] [-w] [--json]
423
+ $ mw app create static --document-root <value> [-p <value>] [-q] [--site-title <value>] [-w]
418
424
 
419
425
  FLAGS
420
426
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
421
427
  context
422
428
  -q, --quiet suppress process output and only display a machine-readable summary.
423
- -w, --wait Wait for your custom static site to be ready.
424
- --document-root=<value> (required) [default: /] The document root from which your custom static site will be
429
+ -w, --wait wait for your custom static site to be ready.
430
+ --document-root=<value> (required) [default: /] the document root from which your custom static site will be
425
431
  served (relative to the installation path)
426
- --json
427
- --site-title=<value> Site Title for your custom static site installation.
432
+ --site-title=<value> site title for your custom static site installation.
428
433
 
429
434
  DESCRIPTION
430
435
  Creates new custom static site installation.
@@ -442,17 +447,16 @@ FLAG DESCRIPTIONS
442
447
 
443
448
  --document-root=<value>
444
449
 
445
- The document root from which your custom static site will be served (relative to the installation path)
450
+ the document root from which your custom static site will be served (relative to the installation path)
446
451
 
447
452
  This is the document root from which the files of your application will be served by the web server. This directory
448
453
  is specified relative to the installation path.
449
454
 
450
- --site-title=<value> Site Title for your custom static site installation.
455
+ --site-title=<value> site title for your custom static site installation.
451
456
 
452
- Site Title which will be displayed in the Tab and at the top of the Frontend of your custom static site
453
- installation.
454
- It is also the Title shown in the App-Overview in the mStudio.
455
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
457
+ The site title for this custom static site installation. It is also the title shown in the app overview in the
458
+ mStudio and the CLI.
459
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
456
460
  installation is finished
457
461
  ```
458
462
 
@@ -539,6 +543,34 @@ DESCRIPTION
539
543
  Get all available versions of a particular dependency
540
544
  ```
541
545
 
546
+ ## `mw app download [INSTALLATION-ID]`
547
+
548
+ Download the filesystem of an app within a project to your local machine
549
+
550
+ ```
551
+ USAGE
552
+ $ mw app download [INSTALLATION-ID] --target <value> [-q] [--dry-run] [--delete]
553
+
554
+ ARGUMENTS
555
+ INSTALLATION-ID ID or short ID of an app installation; this argument is optional if a default app installation is set
556
+ in the context
557
+
558
+ FLAGS
559
+ -q, --quiet suppress process output and only display a machine-readable summary.
560
+ --delete delete local files that are not present on the server
561
+ --dry-run do not actually download the app installation
562
+ --target=<value> (required) target directory to download the app installation to
563
+
564
+ DESCRIPTION
565
+ Download the filesystem of an app within a project to your local machine
566
+
567
+ FLAG DESCRIPTIONS
568
+ -q, --quiet suppress process output and only display a machine-readable summary.
569
+
570
+ This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
571
+ scripts), you can use this flag to easily get the IDs of created resources for further processing.
572
+ ```
573
+
542
574
  ## `mw app get [INSTALLATION-ID]`
543
575
 
544
576
  Get details about an app installation
@@ -567,23 +599,21 @@ Creates new Contao installation.
567
599
  USAGE
568
600
  $ mw app install contao --version <value> [-p <value>] [-q] [--host <value>] [--admin-firstname <value>] [--admin-user
569
601
  <value>] [--admin-email <value>] [--admin-pass <value>] [--admin-lastname <value>] [--site-title <value>] [-w]
570
- [--json]
571
602
 
572
603
  FLAGS
573
604
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
574
605
  context
575
606
  -q, --quiet suppress process output and only display a machine-readable summary.
576
- -w, --wait Wait for your Contao to be ready.
577
- --admin-email=<value> E-Mail-Address of your administrator-user.
578
- --admin-firstname=<value> Firstname of your administrator-user.
579
- --admin-lastname=<value> Lastname of your administrator-user.
580
- --admin-pass=<value> Password of your administrator-user.
581
- --admin-user=<value> Username for your administrator-user.
582
- --host=<value> Host to initially configure your Contao installation with; needs to be created
607
+ -w, --wait wait for your Contao to be ready.
608
+ --admin-email=<value> email address of your administrator user.
609
+ --admin-firstname=<value> first name of your administrator user.
610
+ --admin-lastname=<value> Lastname of your administrator user.
611
+ --admin-pass=<value> password of your administrator user.
612
+ --admin-user=<value> Username for your administrator user.
613
+ --host=<value> host to initially configure your Contao installation with; needs to be created
583
614
  separately.
584
- --json
585
- --site-title=<value> Site Title for your Contao installation.
586
- --version=<value> (required) [default: latest] Version of Contao to be installed.
615
+ --site-title=<value> site title for your Contao installation.
616
+ --version=<value> (required) [default: latest] version of Contao to be installed.
587
617
 
588
618
  DESCRIPTION
589
619
  Creates new Contao installation.
@@ -599,55 +629,54 @@ FLAG DESCRIPTIONS
599
629
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
600
630
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
601
631
 
602
- --admin-email=<value> E-Mail-Address of your administrator-user.
632
+ --admin-email=<value> email address of your administrator user.
603
633
 
604
- E-Mail-Address that will correlate to the first administrator-user which will be created during the Contao
605
- installation.
606
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
634
+ email address that will be used for the first administrator user that is created during the Contao installation.
635
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
607
636
  installation is finished.
608
637
 
609
- --admin-firstname=<value> Firstname of your administrator-user.
638
+ --admin-firstname=<value> first name of your administrator user.
610
639
 
611
- Firstname that will correlate to the first administrator-user which will be created during the Contao installation.
612
- If none is given your mStudio Account-Firstname will be used. This Firstname can be changed after the installation
613
- is finished
640
+ The first name that will be used for the first administrator user that is created during the Contao installation.
641
+ If unspecified, the first name of your mStudio user will be used. This value can be changed after the installation
642
+ is finished.
614
643
 
615
- --admin-lastname=<value> Lastname of your administrator-user.
644
+ --admin-lastname=<value> Lastname of your administrator user.
616
645
 
617
- Lastname that will correlate to the first administrator-user which will be created during the Contao installation.
618
- If none is given your mStudio Account-Firstname will be used. This Lastname can be changed after the installation is
619
- finished
646
+ The last name that will be used for the first administrator user that is created during the Contao installation.
647
+ If unspecified, the last name of your mStudio user will be used. This value can be changed after the installation is
648
+ finished.
620
649
 
621
- --admin-pass=<value> Password of your administrator-user.
650
+ --admin-pass=<value> password of your administrator user.
622
651
 
623
- Password that will correlate to the first administrator-user which will be created during the Contao installation.
624
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
625
- installation is finished
652
+ The password that will be used for the first administrator user that is created during the Contao installation.
653
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
654
+ the installation is finished
626
655
 
627
- --admin-user=<value> Username for your administrator-user.
656
+ --admin-user=<value> Username for your administrator user.
628
657
 
629
- Username of the first administrator-user which will be created during the Contao installation.
630
- If not given an adequate username will be created from your mStudio Account Data.
631
- After the installation is finished the Username can be changed and additional administrator-users can be created.
658
+ Username of the first administrator user which will be created during the Contao installation.
659
+ If unspecified, an adequate username will be generated.
660
+ After the installation is finished, the username can be changed and additional administrator users can be created.
632
661
 
633
- --host=<value> Host to initially configure your Contao installation with; needs to be created separately.
662
+ --host=<value> host to initially configure your Contao installation with; needs to be created separately.
634
663
 
635
664
  Specify a host which will be used during the installation and as an initial host for the Contao configuration.
636
- If not given the default host for the given Project will be used.
637
- This does not change the target of the used Host and can be changed later by configuring the Host and your Contao
665
+ If unspecified, the default host for the given project will be used.
666
+ This does not change the target of the used host and can be changed later by configuring the host and your Contao
638
667
  installation.
639
668
 
640
- --site-title=<value> Site Title for your Contao installation.
669
+ --site-title=<value> site title for your Contao installation.
641
670
 
642
- Site Title which will be displayed in the Tab and at the top of the Frontend of your Contao installation.
643
- It is also the Title shown in the App-Overview in the mStudio.
644
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
671
+ The site title for this Contao installation. It is also the title shown in the app overview in the mStudio and the
672
+ CLI.
673
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
645
674
  installation is finished
646
675
 
647
- --version=<value> Version of Contao to be installed.
676
+ --version=<value> version of Contao to be installed.
648
677
 
649
- Specify the Version in which your Contao will be installed.
650
- If none is given the Contao will be installed in the latest available version.
678
+ Specify the version in which your Contao will be installed.
679
+ If unspecified, the Contao will be installed in the latest available version.
651
680
  ```
652
681
 
653
682
  ## `mw app install drupal`
@@ -657,20 +686,19 @@ Creates new Drupal installation.
657
686
  ```
658
687
  USAGE
659
688
  $ mw app install drupal --version <value> [-p <value>] [-q] [--host <value>] [--admin-user <value>] [--admin-email
660
- <value>] [--admin-pass <value>] [--site-title <value>] [-w] [--json]
689
+ <value>] [--admin-pass <value>] [--site-title <value>] [-w]
661
690
 
662
691
  FLAGS
663
692
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
664
693
  context
665
694
  -q, --quiet suppress process output and only display a machine-readable summary.
666
- -w, --wait Wait for your Drupal to be ready.
667
- --admin-email=<value> E-Mail-Address of your administrator-user.
668
- --admin-pass=<value> Password of your administrator-user.
669
- --admin-user=<value> Username for your administrator-user.
670
- --host=<value> Host to initially configure your Drupal installation with; needs to be created separately.
671
- --json
672
- --site-title=<value> Site Title for your Drupal installation.
673
- --version=<value> (required) [default: latest] Version of Drupal to be installed.
695
+ -w, --wait wait for your Drupal to be ready.
696
+ --admin-email=<value> email address of your administrator user.
697
+ --admin-pass=<value> password of your administrator user.
698
+ --admin-user=<value> Username for your administrator user.
699
+ --host=<value> host to initially configure your Drupal installation with; needs to be created separately.
700
+ --site-title=<value> site title for your Drupal installation.
701
+ --version=<value> (required) [default: latest] version of Drupal to be installed.
674
702
 
675
703
  DESCRIPTION
676
704
  Creates new Drupal installation.
@@ -686,43 +714,42 @@ FLAG DESCRIPTIONS
686
714
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
687
715
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
688
716
 
689
- --admin-email=<value> E-Mail-Address of your administrator-user.
717
+ --admin-email=<value> email address of your administrator user.
690
718
 
691
- E-Mail-Address that will correlate to the first administrator-user which will be created during the Drupal
692
- installation.
693
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
719
+ email address that will be used for the first administrator user that is created during the Drupal installation.
720
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
694
721
  installation is finished.
695
722
 
696
- --admin-pass=<value> Password of your administrator-user.
723
+ --admin-pass=<value> password of your administrator user.
697
724
 
698
- Password that will correlate to the first administrator-user which will be created during the Drupal installation.
699
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
700
- installation is finished
725
+ The password that will be used for the first administrator user that is created during the Drupal installation.
726
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
727
+ the installation is finished
701
728
 
702
- --admin-user=<value> Username for your administrator-user.
729
+ --admin-user=<value> Username for your administrator user.
703
730
 
704
- Username of the first administrator-user which will be created during the Drupal installation.
705
- If not given an adequate username will be created from your mStudio Account Data.
706
- After the installation is finished the Username can be changed and additional administrator-users can be created.
731
+ Username of the first administrator user which will be created during the Drupal installation.
732
+ If unspecified, an adequate username will be generated.
733
+ After the installation is finished, the username can be changed and additional administrator users can be created.
707
734
 
708
- --host=<value> Host to initially configure your Drupal installation with; needs to be created separately.
735
+ --host=<value> host to initially configure your Drupal installation with; needs to be created separately.
709
736
 
710
737
  Specify a host which will be used during the installation and as an initial host for the Drupal configuration.
711
- If not given the default host for the given Project will be used.
712
- This does not change the target of the used Host and can be changed later by configuring the Host and your Drupal
738
+ If unspecified, the default host for the given project will be used.
739
+ This does not change the target of the used host and can be changed later by configuring the host and your Drupal
713
740
  installation.
714
741
 
715
- --site-title=<value> Site Title for your Drupal installation.
742
+ --site-title=<value> site title for your Drupal installation.
716
743
 
717
- Site Title which will be displayed in the Tab and at the top of the Frontend of your Drupal installation.
718
- It is also the Title shown in the App-Overview in the mStudio.
719
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
744
+ The site title for this Drupal installation. It is also the title shown in the app overview in the mStudio and the
745
+ CLI.
746
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
720
747
  installation is finished
721
748
 
722
- --version=<value> Version of Drupal to be installed.
749
+ --version=<value> version of Drupal to be installed.
723
750
 
724
- Specify the Version in which your Drupal will be installed.
725
- If none is given the Drupal will be installed in the latest available version.
751
+ Specify the version in which your Drupal will be installed.
752
+ If unspecified, the Drupal will be installed in the latest available version.
726
753
  ```
727
754
 
728
755
  ## `mw app install grav`
@@ -732,21 +759,20 @@ Creates new Grav installation.
732
759
  ```
733
760
  USAGE
734
761
  $ mw app install grav --version <value> [-p <value>] [-q] [--admin-user <value>] [--admin-email <value>]
735
- [--admin-pass <value>] [--admin-firstname <value>] [--admin-lastname <value>] [--site-title <value>] [-w] [--json]
762
+ [--admin-pass <value>] [--admin-firstname <value>] [--admin-lastname <value>] [--site-title <value>] [-w]
736
763
 
737
764
  FLAGS
738
765
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
739
766
  context
740
767
  -q, --quiet suppress process output and only display a machine-readable summary.
741
- -w, --wait Wait for your Grav to be ready.
742
- --admin-email=<value> E-Mail-Address of your administrator-user.
743
- --admin-firstname=<value> Firstname of your administrator-user.
744
- --admin-lastname=<value> Lastname of your administrator-user.
745
- --admin-pass=<value> Password of your administrator-user.
746
- --admin-user=<value> Username for your administrator-user.
747
- --json
748
- --site-title=<value> Site Title for your Grav installation.
749
- --version=<value> (required) [default: latest] Version of Grav to be installed.
768
+ -w, --wait wait for your Grav to be ready.
769
+ --admin-email=<value> email address of your administrator user.
770
+ --admin-firstname=<value> first name of your administrator user.
771
+ --admin-lastname=<value> Lastname of your administrator user.
772
+ --admin-pass=<value> password of your administrator user.
773
+ --admin-user=<value> Username for your administrator user.
774
+ --site-title=<value> site title for your Grav installation.
775
+ --version=<value> (required) [default: latest] version of Grav to be installed.
750
776
 
751
777
  DESCRIPTION
752
778
  Creates new Grav installation.
@@ -762,48 +788,47 @@ FLAG DESCRIPTIONS
762
788
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
763
789
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
764
790
 
765
- --admin-email=<value> E-Mail-Address of your administrator-user.
791
+ --admin-email=<value> email address of your administrator user.
766
792
 
767
- E-Mail-Address that will correlate to the first administrator-user which will be created during the Grav
768
- installation.
769
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
793
+ email address that will be used for the first administrator user that is created during the Grav installation.
794
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
770
795
  installation is finished.
771
796
 
772
- --admin-firstname=<value> Firstname of your administrator-user.
797
+ --admin-firstname=<value> first name of your administrator user.
773
798
 
774
- Firstname that will correlate to the first administrator-user which will be created during the Grav installation.
775
- If none is given your mStudio Account-Firstname will be used. This Firstname can be changed after the installation
776
- is finished
799
+ The first name that will be used for the first administrator user that is created during the Grav installation.
800
+ If unspecified, the first name of your mStudio user will be used. This value can be changed after the installation
801
+ is finished.
777
802
 
778
- --admin-lastname=<value> Lastname of your administrator-user.
803
+ --admin-lastname=<value> Lastname of your administrator user.
779
804
 
780
- Lastname that will correlate to the first administrator-user which will be created during the Grav installation.
781
- If none is given your mStudio Account-Firstname will be used. This Lastname can be changed after the installation is
782
- finished
805
+ The last name that will be used for the first administrator user that is created during the Grav installation.
806
+ If unspecified, the last name of your mStudio user will be used. This value can be changed after the installation is
807
+ finished.
783
808
 
784
- --admin-pass=<value> Password of your administrator-user.
809
+ --admin-pass=<value> password of your administrator user.
785
810
 
786
- Password that will correlate to the first administrator-user which will be created during the Grav installation.
787
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
788
- installation is finished
811
+ The password that will be used for the first administrator user that is created during the Grav installation.
812
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
813
+ the installation is finished
789
814
 
790
- --admin-user=<value> Username for your administrator-user.
815
+ --admin-user=<value> Username for your administrator user.
791
816
 
792
- Username of the first administrator-user which will be created during the Grav installation.
793
- If not given an adequate username will be created from your mStudio Account Data.
794
- After the installation is finished the Username can be changed and additional administrator-users can be created.
817
+ Username of the first administrator user which will be created during the Grav installation.
818
+ If unspecified, an adequate username will be generated.
819
+ After the installation is finished, the username can be changed and additional administrator users can be created.
795
820
 
796
- --site-title=<value> Site Title for your Grav installation.
821
+ --site-title=<value> site title for your Grav installation.
797
822
 
798
- Site Title which will be displayed in the Tab and at the top of the Frontend of your Grav installation.
799
- It is also the Title shown in the App-Overview in the mStudio.
800
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
823
+ The site title for this Grav installation. It is also the title shown in the app overview in the mStudio and the
824
+ CLI.
825
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
801
826
  installation is finished
802
827
 
803
- --version=<value> Version of Grav to be installed.
828
+ --version=<value> version of Grav to be installed.
804
829
 
805
- Specify the Version in which your Grav will be installed.
806
- If none is given the Grav will be installed in the latest available version.
830
+ Specify the version in which your Grav will be installed.
831
+ If unspecified, the Grav will be installed in the latest available version.
807
832
  ```
808
833
 
809
834
  ## `mw app install joomla`
@@ -814,23 +839,21 @@ Creates new Joomla! installation.
814
839
  USAGE
815
840
  $ mw app install joomla --version <value> [-p <value>] [-q] [--host <value>] [--admin-user <value>] [--admin-email
816
841
  <value>] [--admin-pass <value>] [--admin-firstname <value>] [--admin-lastname <value>] [--site-title <value>] [-w]
817
- [--json]
818
842
 
819
843
  FLAGS
820
844
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
821
845
  context
822
846
  -q, --quiet suppress process output and only display a machine-readable summary.
823
- -w, --wait Wait for your Joomla! to be ready.
824
- --admin-email=<value> E-Mail-Address of your administrator-user.
825
- --admin-firstname=<value> Firstname of your administrator-user.
826
- --admin-lastname=<value> Lastname of your administrator-user.
827
- --admin-pass=<value> Password of your administrator-user.
828
- --admin-user=<value> Username for your administrator-user.
829
- --host=<value> Host to initially configure your Joomla! installation with; needs to be created
847
+ -w, --wait wait for your Joomla! to be ready.
848
+ --admin-email=<value> email address of your administrator user.
849
+ --admin-firstname=<value> first name of your administrator user.
850
+ --admin-lastname=<value> Lastname of your administrator user.
851
+ --admin-pass=<value> password of your administrator user.
852
+ --admin-user=<value> Username for your administrator user.
853
+ --host=<value> host to initially configure your Joomla! installation with; needs to be created
830
854
  separately.
831
- --json
832
- --site-title=<value> Site Title for your Joomla! installation.
833
- --version=<value> (required) [default: latest] Version of Joomla! to be installed.
855
+ --site-title=<value> site title for your Joomla! installation.
856
+ --version=<value> (required) [default: latest] version of Joomla! to be installed.
834
857
 
835
858
  DESCRIPTION
836
859
  Creates new Joomla! installation.
@@ -846,55 +869,54 @@ FLAG DESCRIPTIONS
846
869
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
847
870
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
848
871
 
849
- --admin-email=<value> E-Mail-Address of your administrator-user.
872
+ --admin-email=<value> email address of your administrator user.
850
873
 
851
- E-Mail-Address that will correlate to the first administrator-user which will be created during the Joomla!
852
- installation.
853
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
874
+ email address that will be used for the first administrator user that is created during the Joomla! installation.
875
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
854
876
  installation is finished.
855
877
 
856
- --admin-firstname=<value> Firstname of your administrator-user.
878
+ --admin-firstname=<value> first name of your administrator user.
857
879
 
858
- Firstname that will correlate to the first administrator-user which will be created during the Joomla! installation.
859
- If none is given your mStudio Account-Firstname will be used. This Firstname can be changed after the installation
860
- is finished
880
+ The first name that will be used for the first administrator user that is created during the Joomla! installation.
881
+ If unspecified, the first name of your mStudio user will be used. This value can be changed after the installation
882
+ is finished.
861
883
 
862
- --admin-lastname=<value> Lastname of your administrator-user.
884
+ --admin-lastname=<value> Lastname of your administrator user.
863
885
 
864
- Lastname that will correlate to the first administrator-user which will be created during the Joomla! installation.
865
- If none is given your mStudio Account-Firstname will be used. This Lastname can be changed after the installation is
866
- finished
886
+ The last name that will be used for the first administrator user that is created during the Joomla! installation.
887
+ If unspecified, the last name of your mStudio user will be used. This value can be changed after the installation is
888
+ finished.
867
889
 
868
- --admin-pass=<value> Password of your administrator-user.
890
+ --admin-pass=<value> password of your administrator user.
869
891
 
870
- Password that will correlate to the first administrator-user which will be created during the Joomla! installation.
871
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
872
- installation is finished
892
+ The password that will be used for the first administrator user that is created during the Joomla! installation.
893
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
894
+ the installation is finished
873
895
 
874
- --admin-user=<value> Username for your administrator-user.
896
+ --admin-user=<value> Username for your administrator user.
875
897
 
876
- Username of the first administrator-user which will be created during the Joomla! installation.
877
- If not given an adequate username will be created from your mStudio Account Data.
878
- After the installation is finished the Username can be changed and additional administrator-users can be created.
898
+ Username of the first administrator user which will be created during the Joomla! installation.
899
+ If unspecified, an adequate username will be generated.
900
+ After the installation is finished, the username can be changed and additional administrator users can be created.
879
901
 
880
- --host=<value> Host to initially configure your Joomla! installation with; needs to be created separately.
902
+ --host=<value> host to initially configure your Joomla! installation with; needs to be created separately.
881
903
 
882
904
  Specify a host which will be used during the installation and as an initial host for the Joomla! configuration.
883
- If not given the default host for the given Project will be used.
884
- This does not change the target of the used Host and can be changed later by configuring the Host and your Joomla!
905
+ If unspecified, the default host for the given project will be used.
906
+ This does not change the target of the used host and can be changed later by configuring the host and your Joomla!
885
907
  installation.
886
908
 
887
- --site-title=<value> Site Title for your Joomla! installation.
909
+ --site-title=<value> site title for your Joomla! installation.
888
910
 
889
- Site Title which will be displayed in the Tab and at the top of the Frontend of your Joomla! installation.
890
- It is also the Title shown in the App-Overview in the mStudio.
891
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
911
+ The site title for this Joomla! installation. It is also the title shown in the app overview in the mStudio and the
912
+ CLI.
913
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
892
914
  installation is finished
893
915
 
894
- --version=<value> Version of Joomla! to be installed.
916
+ --version=<value> version of Joomla! to be installed.
895
917
 
896
- Specify the Version in which your Joomla! will be installed.
897
- If none is given the Joomla! will be installed in the latest available version.
918
+ Specify the version in which your Joomla! will be installed.
919
+ If unspecified, the Joomla! will be installed in the latest available version.
898
920
  ```
899
921
 
900
922
  ## `mw app install matomo`
@@ -904,20 +926,19 @@ Creates new Matomo installation.
904
926
  ```
905
927
  USAGE
906
928
  $ mw app install matomo --version <value> [-p <value>] [-q] [--host <value>] [--admin-user <value>] [--admin-email
907
- <value>] [--admin-pass <value>] [--site-title <value>] [-w] [--json]
929
+ <value>] [--admin-pass <value>] [--site-title <value>] [-w]
908
930
 
909
931
  FLAGS
910
932
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
911
933
  context
912
934
  -q, --quiet suppress process output and only display a machine-readable summary.
913
- -w, --wait Wait for your Matomo to be ready.
914
- --admin-email=<value> E-Mail-Address of your administrator-user.
915
- --admin-pass=<value> Password of your administrator-user.
916
- --admin-user=<value> Username for your administrator-user.
917
- --host=<value> Host to initially configure your Matomo installation with; needs to be created separately.
918
- --json
919
- --site-title=<value> Site Title for your Matomo installation.
920
- --version=<value> (required) [default: latest] Version of Matomo to be installed.
935
+ -w, --wait wait for your Matomo to be ready.
936
+ --admin-email=<value> email address of your administrator user.
937
+ --admin-pass=<value> password of your administrator user.
938
+ --admin-user=<value> Username for your administrator user.
939
+ --host=<value> host to initially configure your Matomo installation with; needs to be created separately.
940
+ --site-title=<value> site title for your Matomo installation.
941
+ --version=<value> (required) [default: latest] version of Matomo to be installed.
921
942
 
922
943
  DESCRIPTION
923
944
  Creates new Matomo installation.
@@ -933,43 +954,42 @@ FLAG DESCRIPTIONS
933
954
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
934
955
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
935
956
 
936
- --admin-email=<value> E-Mail-Address of your administrator-user.
957
+ --admin-email=<value> email address of your administrator user.
937
958
 
938
- E-Mail-Address that will correlate to the first administrator-user which will be created during the Matomo
939
- installation.
940
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
959
+ email address that will be used for the first administrator user that is created during the Matomo installation.
960
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
941
961
  installation is finished.
942
962
 
943
- --admin-pass=<value> Password of your administrator-user.
963
+ --admin-pass=<value> password of your administrator user.
944
964
 
945
- Password that will correlate to the first administrator-user which will be created during the Matomo installation.
946
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
947
- installation is finished
965
+ The password that will be used for the first administrator user that is created during the Matomo installation.
966
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
967
+ the installation is finished
948
968
 
949
- --admin-user=<value> Username for your administrator-user.
969
+ --admin-user=<value> Username for your administrator user.
950
970
 
951
- Username of the first administrator-user which will be created during the Matomo installation.
952
- If not given an adequate username will be created from your mStudio Account Data.
953
- After the installation is finished the Username can be changed and additional administrator-users can be created.
971
+ Username of the first administrator user which will be created during the Matomo installation.
972
+ If unspecified, an adequate username will be generated.
973
+ After the installation is finished, the username can be changed and additional administrator users can be created.
954
974
 
955
- --host=<value> Host to initially configure your Matomo installation with; needs to be created separately.
975
+ --host=<value> host to initially configure your Matomo installation with; needs to be created separately.
956
976
 
957
977
  Specify a host which will be used during the installation and as an initial host for the Matomo configuration.
958
- If not given the default host for the given Project will be used.
959
- This does not change the target of the used Host and can be changed later by configuring the Host and your Matomo
978
+ If unspecified, the default host for the given project will be used.
979
+ This does not change the target of the used host and can be changed later by configuring the host and your Matomo
960
980
  installation.
961
981
 
962
- --site-title=<value> Site Title for your Matomo installation.
982
+ --site-title=<value> site title for your Matomo installation.
963
983
 
964
- Site Title which will be displayed in the Tab and at the top of the Frontend of your Matomo installation.
965
- It is also the Title shown in the App-Overview in the mStudio.
966
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
984
+ The site title for this Matomo installation. It is also the title shown in the app overview in the mStudio and the
985
+ CLI.
986
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
967
987
  installation is finished
968
988
 
969
- --version=<value> Version of Matomo to be installed.
989
+ --version=<value> version of Matomo to be installed.
970
990
 
971
- Specify the Version in which your Matomo will be installed.
972
- If none is given the Matomo will be installed in the latest available version.
991
+ Specify the version in which your Matomo will be installed.
992
+ If unspecified, the Matomo will be installed in the latest available version.
973
993
  ```
974
994
 
975
995
  ## `mw app install nextcloud`
@@ -979,21 +999,20 @@ Creates new Shopware 6 installation.
979
999
  ```
980
1000
  USAGE
981
1001
  $ mw app install nextcloud --version <value> [-p <value>] [-q] [--host <value>] [--admin-user <value>] [--admin-email
982
- <value>] [--admin-pass <value>] [--site-title <value>] [-w] [--json]
1002
+ <value>] [--admin-pass <value>] [--site-title <value>] [-w]
983
1003
 
984
1004
  FLAGS
985
1005
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
986
1006
  context
987
1007
  -q, --quiet suppress process output and only display a machine-readable summary.
988
- -w, --wait Wait for your Shopware 6 to be ready.
989
- --admin-email=<value> E-Mail-Address of your administrator-user.
990
- --admin-pass=<value> Password of your administrator-user.
991
- --admin-user=<value> Username for your administrator-user.
992
- --host=<value> Host to initially configure your Shopware 6 installation with; needs to be created
1008
+ -w, --wait wait for your Shopware 6 to be ready.
1009
+ --admin-email=<value> email address of your administrator user.
1010
+ --admin-pass=<value> password of your administrator user.
1011
+ --admin-user=<value> Username for your administrator user.
1012
+ --host=<value> host to initially configure your Shopware 6 installation with; needs to be created
993
1013
  separately.
994
- --json
995
- --site-title=<value> Site Title for your Shopware 6 installation.
996
- --version=<value> (required) [default: latest] Version of Shopware 6 to be installed.
1014
+ --site-title=<value> site title for your Shopware 6 installation.
1015
+ --version=<value> (required) [default: latest] version of Shopware 6 to be installed.
997
1016
 
998
1017
  DESCRIPTION
999
1018
  Creates new Shopware 6 installation.
@@ -1009,44 +1028,42 @@ FLAG DESCRIPTIONS
1009
1028
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
1010
1029
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
1011
1030
 
1012
- --admin-email=<value> E-Mail-Address of your administrator-user.
1031
+ --admin-email=<value> email address of your administrator user.
1013
1032
 
1014
- E-Mail-Address that will correlate to the first administrator-user which will be created during the Shopware 6
1015
- installation.
1016
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
1033
+ email address that will be used for the first administrator user that is created during the Shopware 6 installation.
1034
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
1017
1035
  installation is finished.
1018
1036
 
1019
- --admin-pass=<value> Password of your administrator-user.
1037
+ --admin-pass=<value> password of your administrator user.
1020
1038
 
1021
- Password that will correlate to the first administrator-user which will be created during the Shopware 6
1022
- installation.
1023
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
1024
- installation is finished
1039
+ The password that will be used for the first administrator user that is created during the Shopware 6 installation.
1040
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
1041
+ the installation is finished
1025
1042
 
1026
- --admin-user=<value> Username for your administrator-user.
1043
+ --admin-user=<value> Username for your administrator user.
1027
1044
 
1028
- Username of the first administrator-user which will be created during the Shopware 6 installation.
1029
- If not given an adequate username will be created from your mStudio Account Data.
1030
- After the installation is finished the Username can be changed and additional administrator-users can be created.
1045
+ Username of the first administrator user which will be created during the Shopware 6 installation.
1046
+ If unspecified, an adequate username will be generated.
1047
+ After the installation is finished, the username can be changed and additional administrator users can be created.
1031
1048
 
1032
- --host=<value> Host to initially configure your Shopware 6 installation with; needs to be created separately.
1049
+ --host=<value> host to initially configure your Shopware 6 installation with; needs to be created separately.
1033
1050
 
1034
1051
  Specify a host which will be used during the installation and as an initial host for the Shopware 6 configuration.
1035
- If not given the default host for the given Project will be used.
1036
- This does not change the target of the used Host and can be changed later by configuring the Host and your Shopware
1052
+ If unspecified, the default host for the given project will be used.
1053
+ This does not change the target of the used host and can be changed later by configuring the host and your Shopware
1037
1054
  6 installation.
1038
1055
 
1039
- --site-title=<value> Site Title for your Shopware 6 installation.
1056
+ --site-title=<value> site title for your Shopware 6 installation.
1040
1057
 
1041
- Site Title which will be displayed in the Tab and at the top of the Frontend of your Shopware 6 installation.
1042
- It is also the Title shown in the App-Overview in the mStudio.
1043
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
1058
+ The site title for this Shopware 6 installation. It is also the title shown in the app overview in the mStudio and
1059
+ the CLI.
1060
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
1044
1061
  installation is finished
1045
1062
 
1046
- --version=<value> Version of Shopware 6 to be installed.
1063
+ --version=<value> version of Shopware 6 to be installed.
1047
1064
 
1048
- Specify the Version in which your Shopware 6 will be installed.
1049
- If none is given the Shopware 6 will be installed in the latest available version.
1065
+ Specify the version in which your Shopware 6 will be installed.
1066
+ If unspecified, the Shopware 6 will be installed in the latest available version.
1050
1067
  ```
1051
1068
 
1052
1069
  ## `mw app install shopware5`
@@ -1057,26 +1074,25 @@ Creates new Shopware 5 installation.
1057
1074
  USAGE
1058
1075
  $ mw app install shopware5 --version <value> [-p <value>] [-q] [--host <value>] [--admin-user <value>] [--admin-email
1059
1076
  <value>] [--admin-pass <value>] [--admin-firstname <value>] [--admin-lastname <value>] [--site-title <value>]
1060
- [--shop-email <value>] [--shop-lang <value>] [--shop-currency <value>] [-w] [--json]
1077
+ [--shop-email <value>] [--shop-lang <value>] [--shop-currency <value>] [-w]
1061
1078
 
1062
1079
  FLAGS
1063
1080
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
1064
1081
  context
1065
1082
  -q, --quiet suppress process output and only display a machine-readable summary.
1066
- -w, --wait Wait for your Shopware 5 to be ready.
1067
- --admin-email=<value> E-Mail-Address of your administrator-user.
1068
- --admin-firstname=<value> Firstname of your administrator-user.
1069
- --admin-lastname=<value> Lastname of your administrator-user.
1070
- --admin-pass=<value> Password of your administrator-user.
1071
- --admin-user=<value> Username for your administrator-user.
1072
- --host=<value> Host to initially configure your Shopware 5 installation with; needs to be created
1083
+ -w, --wait wait for your Shopware 5 to be ready.
1084
+ --admin-email=<value> email address of your administrator user.
1085
+ --admin-firstname=<value> first name of your administrator user.
1086
+ --admin-lastname=<value> Lastname of your administrator user.
1087
+ --admin-pass=<value> password of your administrator user.
1088
+ --admin-user=<value> Username for your administrator user.
1089
+ --host=<value> host to initially configure your Shopware 5 installation with; needs to be created
1073
1090
  separately.
1074
- --json
1075
1091
  --shop-currency=<value> Currency your Shopware 5 will be working with.
1076
- --shop-email=<value> E-Mail-Address your Shopware 5 will be working with.
1077
- --shop-lang=<value> Language your Shopware 5 will be working with.
1078
- --site-title=<value> Site Title for your Shopware 5 installation.
1079
- --version=<value> (required) [default: latest] Version of Shopware 5 to be installed.
1092
+ --shop-email=<value> email address your Shopware 5 will be working with.
1093
+ --shop-lang=<value> language your Shopware 5 will be working with.
1094
+ --site-title=<value> site title for your Shopware 5 installation.
1095
+ --version=<value> (required) [default: latest] version of Shopware 5 to be installed.
1080
1096
 
1081
1097
  DESCRIPTION
1082
1098
  Creates new Shopware 5 installation.
@@ -1092,75 +1108,72 @@ FLAG DESCRIPTIONS
1092
1108
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
1093
1109
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
1094
1110
 
1095
- --admin-email=<value> E-Mail-Address of your administrator-user.
1111
+ --admin-email=<value> email address of your administrator user.
1096
1112
 
1097
- E-Mail-Address that will correlate to the first administrator-user which will be created during the Shopware 5
1098
- installation.
1099
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
1113
+ email address that will be used for the first administrator user that is created during the Shopware 5 installation.
1114
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
1100
1115
  installation is finished.
1101
1116
 
1102
- --admin-firstname=<value> Firstname of your administrator-user.
1117
+ --admin-firstname=<value> first name of your administrator user.
1103
1118
 
1104
- Firstname that will correlate to the first administrator-user which will be created during the Shopware 5
1119
+ The first name that will be used for the first administrator user that is created during the Shopware 5
1105
1120
  installation.
1106
- If none is given your mStudio Account-Firstname will be used. This Firstname can be changed after the installation
1107
- is finished
1121
+ If unspecified, the first name of your mStudio user will be used. This value can be changed after the installation
1122
+ is finished.
1108
1123
 
1109
- --admin-lastname=<value> Lastname of your administrator-user.
1124
+ --admin-lastname=<value> Lastname of your administrator user.
1110
1125
 
1111
- Lastname that will correlate to the first administrator-user which will be created during the Shopware 5
1112
- installation.
1113
- If none is given your mStudio Account-Firstname will be used. This Lastname can be changed after the installation is
1114
- finished
1126
+ The last name that will be used for the first administrator user that is created during the Shopware 5 installation.
1127
+ If unspecified, the last name of your mStudio user will be used. This value can be changed after the installation is
1128
+ finished.
1115
1129
 
1116
- --admin-pass=<value> Password of your administrator-user.
1130
+ --admin-pass=<value> password of your administrator user.
1117
1131
 
1118
- Password that will correlate to the first administrator-user which will be created during the Shopware 5
1119
- installation.
1120
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
1121
- installation is finished
1132
+ The password that will be used for the first administrator user that is created during the Shopware 5 installation.
1133
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
1134
+ the installation is finished
1122
1135
 
1123
- --admin-user=<value> Username for your administrator-user.
1136
+ --admin-user=<value> Username for your administrator user.
1124
1137
 
1125
- Username of the first administrator-user which will be created during the Shopware 5 installation.
1126
- If not given an adequate username will be created from your mStudio Account Data.
1127
- After the installation is finished the Username can be changed and additional administrator-users can be created.
1138
+ Username of the first administrator user which will be created during the Shopware 5 installation.
1139
+ If unspecified, an adequate username will be generated.
1140
+ After the installation is finished, the username can be changed and additional administrator users can be created.
1128
1141
 
1129
- --host=<value> Host to initially configure your Shopware 5 installation with; needs to be created separately.
1142
+ --host=<value> host to initially configure your Shopware 5 installation with; needs to be created separately.
1130
1143
 
1131
1144
  Specify a host which will be used during the installation and as an initial host for the Shopware 5 configuration.
1132
- If not given the default host for the given Project will be used.
1133
- This does not change the target of the used Host and can be changed later by configuring the Host and your Shopware
1145
+ If unspecified, the default host for the given project will be used.
1146
+ This does not change the target of the used host and can be changed later by configuring the host and your Shopware
1134
1147
  5 installation.
1135
1148
 
1136
1149
  --shop-currency=<value> Currency your Shopware 5 will be working with.
1137
1150
 
1138
- The default Currency your Shopware 5 shop communicates prices and calculates transactions with.
1139
- If not given will default to EUR(€). The currency can be changed after the installation is finished.
1151
+ The default currency your Shopware 5 shop communicates prices and calculates transactions with.
1152
+ If unspecified, this will default to EUR(€). The currency can be changed after the installation is finished.
1140
1153
 
1141
- --shop-email=<value> E-Mail-Address your Shopware 5 will be working with.
1154
+ --shop-email=<value> email address your Shopware 5 will be working with.
1142
1155
 
1143
- The E-Mail-Address your Shopware 5 shop will be using for correspondence..
1144
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
1145
- installation is finished.
1156
+ The email address your Shopware 5 installation will be using for correspondence with end users.
1157
+ If unspecified, your mStudio account email will be used. This email address can be changed after the installation is
1158
+ finished.
1146
1159
 
1147
- --shop-lang=<value> Language your Shopware 5 will be working with.
1160
+ --shop-lang=<value> language your Shopware 5 will be working with.
1148
1161
 
1149
- The default Language your Shopware 5 shop will be using.
1150
- The Front- and Backend will be displayed using the given language.
1151
- If not given will default to German(de_DE). The language can be changed after the installation is finished.
1162
+ The default language your Shopware 5 installation will be using. The front- and back end will be displayed using the
1163
+ given language.
1164
+ If unspecified, this will default to German (de_DE). The language can be changed after the installation is finished.
1152
1165
 
1153
- --site-title=<value> Site Title for your Shopware 5 installation.
1166
+ --site-title=<value> site title for your Shopware 5 installation.
1154
1167
 
1155
- Site Title which will be displayed in the Tab and at the top of the Frontend of your Shopware 5 installation.
1156
- It is also the Title shown in the App-Overview in the mStudio.
1157
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
1168
+ The site title for this Shopware 5 installation. It is also the title shown in the app overview in the mStudio and
1169
+ the CLI.
1170
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
1158
1171
  installation is finished
1159
1172
 
1160
- --version=<value> Version of Shopware 5 to be installed.
1173
+ --version=<value> version of Shopware 5 to be installed.
1161
1174
 
1162
- Specify the Version in which your Shopware 5 will be installed.
1163
- If none is given the Shopware 5 will be installed in the latest available version.
1175
+ Specify the version in which your Shopware 5 will be installed.
1176
+ If unspecified, the Shopware 5 will be installed in the latest available version.
1164
1177
  ```
1165
1178
 
1166
1179
  ## `mw app install shopware6`
@@ -1171,26 +1184,25 @@ Creates new Shopware 6 installation.
1171
1184
  USAGE
1172
1185
  $ mw app install shopware6 --version <value> [-p <value>] [-q] [--host <value>] [--admin-user <value>] [--admin-email
1173
1186
  <value>] [--admin-pass <value>] [--admin-firstname <value>] [--admin-lastname <value>] [--site-title <value>]
1174
- [--shop-email <value>] [--shop-lang <value>] [--shop-currency <value>] [-w] [--json]
1187
+ [--shop-email <value>] [--shop-lang <value>] [--shop-currency <value>] [-w]
1175
1188
 
1176
1189
  FLAGS
1177
1190
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
1178
1191
  context
1179
1192
  -q, --quiet suppress process output and only display a machine-readable summary.
1180
- -w, --wait Wait for your Shopware 6 to be ready.
1181
- --admin-email=<value> E-Mail-Address of your administrator-user.
1182
- --admin-firstname=<value> Firstname of your administrator-user.
1183
- --admin-lastname=<value> Lastname of your administrator-user.
1184
- --admin-pass=<value> Password of your administrator-user.
1185
- --admin-user=<value> Username for your administrator-user.
1186
- --host=<value> Host to initially configure your Shopware 6 installation with; needs to be created
1193
+ -w, --wait wait for your Shopware 6 to be ready.
1194
+ --admin-email=<value> email address of your administrator user.
1195
+ --admin-firstname=<value> first name of your administrator user.
1196
+ --admin-lastname=<value> Lastname of your administrator user.
1197
+ --admin-pass=<value> password of your administrator user.
1198
+ --admin-user=<value> Username for your administrator user.
1199
+ --host=<value> host to initially configure your Shopware 6 installation with; needs to be created
1187
1200
  separately.
1188
- --json
1189
1201
  --shop-currency=<value> Currency your Shopware 6 will be working with.
1190
- --shop-email=<value> E-Mail-Address your Shopware 6 will be working with.
1191
- --shop-lang=<value> Language your Shopware 6 will be working with.
1192
- --site-title=<value> Site Title for your Shopware 6 installation.
1193
- --version=<value> (required) [default: latest] Version of Shopware 6 to be installed.
1202
+ --shop-email=<value> email address your Shopware 6 will be working with.
1203
+ --shop-lang=<value> language your Shopware 6 will be working with.
1204
+ --site-title=<value> site title for your Shopware 6 installation.
1205
+ --version=<value> (required) [default: latest] version of Shopware 6 to be installed.
1194
1206
 
1195
1207
  DESCRIPTION
1196
1208
  Creates new Shopware 6 installation.
@@ -1206,75 +1218,72 @@ FLAG DESCRIPTIONS
1206
1218
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
1207
1219
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
1208
1220
 
1209
- --admin-email=<value> E-Mail-Address of your administrator-user.
1221
+ --admin-email=<value> email address of your administrator user.
1210
1222
 
1211
- E-Mail-Address that will correlate to the first administrator-user which will be created during the Shopware 6
1212
- installation.
1213
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
1223
+ email address that will be used for the first administrator user that is created during the Shopware 6 installation.
1224
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
1214
1225
  installation is finished.
1215
1226
 
1216
- --admin-firstname=<value> Firstname of your administrator-user.
1227
+ --admin-firstname=<value> first name of your administrator user.
1217
1228
 
1218
- Firstname that will correlate to the first administrator-user which will be created during the Shopware 6
1229
+ The first name that will be used for the first administrator user that is created during the Shopware 6
1219
1230
  installation.
1220
- If none is given your mStudio Account-Firstname will be used. This Firstname can be changed after the installation
1221
- is finished
1231
+ If unspecified, the first name of your mStudio user will be used. This value can be changed after the installation
1232
+ is finished.
1222
1233
 
1223
- --admin-lastname=<value> Lastname of your administrator-user.
1234
+ --admin-lastname=<value> Lastname of your administrator user.
1224
1235
 
1225
- Lastname that will correlate to the first administrator-user which will be created during the Shopware 6
1226
- installation.
1227
- If none is given your mStudio Account-Firstname will be used. This Lastname can be changed after the installation is
1228
- finished
1236
+ The last name that will be used for the first administrator user that is created during the Shopware 6 installation.
1237
+ If unspecified, the last name of your mStudio user will be used. This value can be changed after the installation is
1238
+ finished.
1229
1239
 
1230
- --admin-pass=<value> Password of your administrator-user.
1240
+ --admin-pass=<value> password of your administrator user.
1231
1241
 
1232
- Password that will correlate to the first administrator-user which will be created during the Shopware 6
1233
- installation.
1234
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
1235
- installation is finished
1242
+ The password that will be used for the first administrator user that is created during the Shopware 6 installation.
1243
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
1244
+ the installation is finished
1236
1245
 
1237
- --admin-user=<value> Username for your administrator-user.
1246
+ --admin-user=<value> Username for your administrator user.
1238
1247
 
1239
- Username of the first administrator-user which will be created during the Shopware 6 installation.
1240
- If not given an adequate username will be created from your mStudio Account Data.
1241
- After the installation is finished the Username can be changed and additional administrator-users can be created.
1248
+ Username of the first administrator user which will be created during the Shopware 6 installation.
1249
+ If unspecified, an adequate username will be generated.
1250
+ After the installation is finished, the username can be changed and additional administrator users can be created.
1242
1251
 
1243
- --host=<value> Host to initially configure your Shopware 6 installation with; needs to be created separately.
1252
+ --host=<value> host to initially configure your Shopware 6 installation with; needs to be created separately.
1244
1253
 
1245
1254
  Specify a host which will be used during the installation and as an initial host for the Shopware 6 configuration.
1246
- If not given the default host for the given Project will be used.
1247
- This does not change the target of the used Host and can be changed later by configuring the Host and your Shopware
1255
+ If unspecified, the default host for the given project will be used.
1256
+ This does not change the target of the used host and can be changed later by configuring the host and your Shopware
1248
1257
  6 installation.
1249
1258
 
1250
1259
  --shop-currency=<value> Currency your Shopware 6 will be working with.
1251
1260
 
1252
- The default Currency your Shopware 6 shop communicates prices and calculates transactions with.
1253
- If not given will default to EUR(€). The currency can be changed after the installation is finished.
1261
+ The default currency your Shopware 6 shop communicates prices and calculates transactions with.
1262
+ If unspecified, this will default to EUR(€). The currency can be changed after the installation is finished.
1254
1263
 
1255
- --shop-email=<value> E-Mail-Address your Shopware 6 will be working with.
1264
+ --shop-email=<value> email address your Shopware 6 will be working with.
1256
1265
 
1257
- The E-Mail-Address your Shopware 6 shop will be using for correspondence..
1258
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
1259
- installation is finished.
1266
+ The email address your Shopware 6 installation will be using for correspondence with end users.
1267
+ If unspecified, your mStudio account email will be used. This email address can be changed after the installation is
1268
+ finished.
1260
1269
 
1261
- --shop-lang=<value> Language your Shopware 6 will be working with.
1270
+ --shop-lang=<value> language your Shopware 6 will be working with.
1262
1271
 
1263
- The default Language your Shopware 6 shop will be using.
1264
- The Front- and Backend will be displayed using the given language.
1265
- If not given will default to German(de_DE). The language can be changed after the installation is finished.
1272
+ The default language your Shopware 6 installation will be using. The front- and back end will be displayed using the
1273
+ given language.
1274
+ If unspecified, this will default to German (de_DE). The language can be changed after the installation is finished.
1266
1275
 
1267
- --site-title=<value> Site Title for your Shopware 6 installation.
1276
+ --site-title=<value> site title for your Shopware 6 installation.
1268
1277
 
1269
- Site Title which will be displayed in the Tab and at the top of the Frontend of your Shopware 6 installation.
1270
- It is also the Title shown in the App-Overview in the mStudio.
1271
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
1278
+ The site title for this Shopware 6 installation. It is also the title shown in the app overview in the mStudio and
1279
+ the CLI.
1280
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
1272
1281
  installation is finished
1273
1282
 
1274
- --version=<value> Version of Shopware 6 to be installed.
1283
+ --version=<value> version of Shopware 6 to be installed.
1275
1284
 
1276
- Specify the Version in which your Shopware 6 will be installed.
1277
- If none is given the Shopware 6 will be installed in the latest available version.
1285
+ Specify the version in which your Shopware 6 will be installed.
1286
+ If unspecified, the Shopware 6 will be installed in the latest available version.
1278
1287
  ```
1279
1288
 
1280
1289
  ## `mw app install typo3`
@@ -1284,23 +1293,21 @@ Creates new TYPO3 installation.
1284
1293
  ```
1285
1294
  USAGE
1286
1295
  $ mw app install typo3 --version <value> --install-mode composer|symlink [-p <value>] [-q] [--host <value>]
1287
- [--admin-user <value>] [--admin-email <value>] [--admin-pass <value>] [--site-title <value>] [-w] [--json]
1296
+ [--admin-user <value>] [--admin-email <value>] [--admin-pass <value>] [--site-title <value>] [-w]
1288
1297
 
1289
1298
  FLAGS
1290
1299
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
1291
1300
  context
1292
1301
  -q, --quiet suppress process output and only display a machine-readable summary.
1293
- -w, --wait Wait for your TYPO3 to be ready.
1294
- --admin-email=<value> E-Mail-Address of your administrator-user.
1295
- --admin-pass=<value> Password of your administrator-user.
1296
- --admin-user=<value> Username for your administrator-user.
1297
- --host=<value> Host to initially configure your TYPO3 installation with; needs to be created separately.
1298
- --install-mode=<option> (required) [default: composer] The installation variant your TYPO3 will be installed
1299
- with.
1302
+ -w, --wait wait for your TYPO3 to be ready.
1303
+ --admin-email=<value> email address of your administrator user.
1304
+ --admin-pass=<value> password of your administrator user.
1305
+ --admin-user=<value> Username for your administrator user.
1306
+ --host=<value> host to initially configure your TYPO3 installation with; needs to be created separately.
1307
+ --install-mode=<option> (required) [default: composer] The installation mode your TYPO3 will be installed with.
1300
1308
  <options: composer|symlink>
1301
- --json
1302
- --site-title=<value> Site Title for your TYPO3 installation.
1303
- --version=<value> (required) [default: latest] Version of TYPO3 to be installed.
1309
+ --site-title=<value> site title for your TYPO3 installation.
1310
+ --version=<value> (required) [default: latest] version of TYPO3 to be installed.
1304
1311
 
1305
1312
  DESCRIPTION
1306
1313
  Creates new TYPO3 installation.
@@ -1316,51 +1323,48 @@ FLAG DESCRIPTIONS
1316
1323
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
1317
1324
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
1318
1325
 
1319
- --admin-email=<value> E-Mail-Address of your administrator-user.
1326
+ --admin-email=<value> email address of your administrator user.
1320
1327
 
1321
- E-Mail-Address that will correlate to the first administrator-user which will be created during the TYPO3
1322
- installation.
1323
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
1328
+ email address that will be used for the first administrator user that is created during the TYPO3 installation.
1329
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
1324
1330
  installation is finished.
1325
1331
 
1326
- --admin-pass=<value> Password of your administrator-user.
1332
+ --admin-pass=<value> password of your administrator user.
1327
1333
 
1328
- Password that will correlate to the first administrator-user which will be created during the TYPO3 installation.
1329
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
1330
- installation is finished
1334
+ The password that will be used for the first administrator user that is created during the TYPO3 installation.
1335
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
1336
+ the installation is finished
1331
1337
 
1332
- --admin-user=<value> Username for your administrator-user.
1338
+ --admin-user=<value> Username for your administrator user.
1333
1339
 
1334
- Username of the first administrator-user which will be created during the TYPO3 installation.
1335
- If not given an adequate username will be created from your mStudio Account Data.
1336
- After the installation is finished the Username can be changed and additional administrator-users can be created.
1340
+ Username of the first administrator user which will be created during the TYPO3 installation.
1341
+ If unspecified, an adequate username will be generated.
1342
+ After the installation is finished, the username can be changed and additional administrator users can be created.
1337
1343
 
1338
- --host=<value> Host to initially configure your TYPO3 installation with; needs to be created separately.
1344
+ --host=<value> host to initially configure your TYPO3 installation with; needs to be created separately.
1339
1345
 
1340
1346
  Specify a host which will be used during the installation and as an initial host for the TYPO3 configuration.
1341
- If not given the default host for the given Project will be used.
1342
- This does not change the target of the used Host and can be changed later by configuring the Host and your TYPO3
1347
+ If unspecified, the default host for the given project will be used.
1348
+ This does not change the target of the used host and can be changed later by configuring the host and your TYPO3
1343
1349
  installation.
1344
1350
 
1345
- --install-mode=composer|symlink The installation variant your TYPO3 will be installed with.
1351
+ --install-mode=composer|symlink The installation mode your TYPO3 will be installed with.
1346
1352
 
1347
- TYPO3 can be installed in one of two different ways. your TYPO3 shop communicates prices and calculates
1348
- transactions with.
1349
- Either as a composer project or in a more manual fashion using the source directory and the TYPO3 console install
1350
- wizard.
1351
- If not given will default to composer installation. This can not be changed later.
1353
+ TYPO3 can be installed in one of two different ways: either as a composer project or in a more manual fashion using
1354
+ the source directory and the TYPO3 console install wizard.
1355
+ If unspecified, this will default to a composer-based installation. This can not be changed later.
1352
1356
 
1353
- --site-title=<value> Site Title for your TYPO3 installation.
1357
+ --site-title=<value> site title for your TYPO3 installation.
1354
1358
 
1355
- Site Title which will be displayed in the Tab and at the top of the Frontend of your TYPO3 installation.
1356
- It is also the Title shown in the App-Overview in the mStudio.
1357
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
1359
+ The site title for this TYPO3 installation. It is also the title shown in the app overview in the mStudio and the
1360
+ CLI.
1361
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
1358
1362
  installation is finished
1359
1363
 
1360
- --version=<value> Version of TYPO3 to be installed.
1364
+ --version=<value> version of TYPO3 to be installed.
1361
1365
 
1362
- Specify the Version in which your TYPO3 will be installed.
1363
- If none is given the TYPO3 will be installed in the latest available version.
1366
+ Specify the version in which your TYPO3 will be installed.
1367
+ If unspecified, the TYPO3 will be installed in the latest available version.
1364
1368
  ```
1365
1369
 
1366
1370
  ## `mw app install wordpress`
@@ -1370,21 +1374,20 @@ Creates new WordPress installation.
1370
1374
  ```
1371
1375
  USAGE
1372
1376
  $ mw app install wordpress --version <value> [-p <value>] [-q] [--host <value>] [--admin-user <value>] [--admin-email
1373
- <value>] [--admin-pass <value>] [--site-title <value>] [-w] [--json]
1377
+ <value>] [--admin-pass <value>] [--site-title <value>] [-w]
1374
1378
 
1375
1379
  FLAGS
1376
1380
  -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
1377
1381
  context
1378
1382
  -q, --quiet suppress process output and only display a machine-readable summary.
1379
- -w, --wait Wait for your WordPress to be ready.
1380
- --admin-email=<value> E-Mail-Address of your administrator-user.
1381
- --admin-pass=<value> Password of your administrator-user.
1382
- --admin-user=<value> Username for your administrator-user.
1383
- --host=<value> Host to initially configure your WordPress installation with; needs to be created
1383
+ -w, --wait wait for your WordPress to be ready.
1384
+ --admin-email=<value> email address of your administrator user.
1385
+ --admin-pass=<value> password of your administrator user.
1386
+ --admin-user=<value> Username for your administrator user.
1387
+ --host=<value> host to initially configure your WordPress installation with; needs to be created
1384
1388
  separately.
1385
- --json
1386
- --site-title=<value> Site Title for your WordPress installation.
1387
- --version=<value> (required) [default: latest] Version of WordPress to be installed.
1389
+ --site-title=<value> site title for your WordPress installation.
1390
+ --version=<value> (required) [default: latest] version of WordPress to be installed.
1388
1391
 
1389
1392
  DESCRIPTION
1390
1393
  Creates new WordPress installation.
@@ -1400,44 +1403,42 @@ FLAG DESCRIPTIONS
1400
1403
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
1401
1404
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
1402
1405
 
1403
- --admin-email=<value> E-Mail-Address of your administrator-user.
1406
+ --admin-email=<value> email address of your administrator user.
1404
1407
 
1405
- E-Mail-Address that will correlate to the first administrator-user which will be created during the WordPress
1406
- installation.
1407
- If not given your mStudio Account-E-Mail-Address will be used. This E-Mail-Address can be changed after the
1408
+ email address that will be used for the first administrator user that is created during the WordPress installation.
1409
+ If unspecified, email address of your mStudio account will be used. This email address can be changed after the
1408
1410
  installation is finished.
1409
1411
 
1410
- --admin-pass=<value> Password of your administrator-user.
1412
+ --admin-pass=<value> password of your administrator user.
1411
1413
 
1412
- Password that will correlate to the first administrator-user which will be created during the WordPress
1413
- installation.
1414
- If not given a random secure Password will be generated and sent to stdout. This Password can be changed after the
1415
- installation is finished
1414
+ The password that will be used for the first administrator user that is created during the WordPress installation.
1415
+ If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
1416
+ the installation is finished
1416
1417
 
1417
- --admin-user=<value> Username for your administrator-user.
1418
+ --admin-user=<value> Username for your administrator user.
1418
1419
 
1419
- Username of the first administrator-user which will be created during the WordPress installation.
1420
- If not given an adequate username will be created from your mStudio Account Data.
1421
- After the installation is finished the Username can be changed and additional administrator-users can be created.
1420
+ Username of the first administrator user which will be created during the WordPress installation.
1421
+ If unspecified, an adequate username will be generated.
1422
+ After the installation is finished, the username can be changed and additional administrator users can be created.
1422
1423
 
1423
- --host=<value> Host to initially configure your WordPress installation with; needs to be created separately.
1424
+ --host=<value> host to initially configure your WordPress installation with; needs to be created separately.
1424
1425
 
1425
1426
  Specify a host which will be used during the installation and as an initial host for the WordPress configuration.
1426
- If not given the default host for the given Project will be used.
1427
- This does not change the target of the used Host and can be changed later by configuring the Host and your WordPress
1427
+ If unspecified, the default host for the given project will be used.
1428
+ This does not change the target of the used host and can be changed later by configuring the host and your WordPress
1428
1429
  installation.
1429
1430
 
1430
- --site-title=<value> Site Title for your WordPress installation.
1431
+ --site-title=<value> site title for your WordPress installation.
1431
1432
 
1432
- Site Title which will be displayed in the Tab and at the top of the Frontend of your WordPress installation.
1433
- It is also the Title shown in the App-Overview in the mStudio.
1434
- If none is given the Software Name and the given Project will be used. The Title can be changed after the
1433
+ The site title for this WordPress installation. It is also the title shown in the app overview in the mStudio and
1434
+ the CLI.
1435
+ If unspecified, the application name and the given project ID will be used. The title can be changed after the
1435
1436
  installation is finished
1436
1437
 
1437
- --version=<value> Version of WordPress to be installed.
1438
+ --version=<value> version of WordPress to be installed.
1438
1439
 
1439
- Specify the Version in which your WordPress will be installed.
1440
- If none is given the WordPress will be installed in the latest available version.
1440
+ Specify the version in which your WordPress will be installed.
1441
+ If unspecified, the WordPress will be installed in the latest available version.
1441
1442
  ```
1442
1443
 
1443
1444
  ## `mw app list`
@@ -1476,7 +1477,7 @@ Connect to an app via SSH
1476
1477
 
1477
1478
  ```
1478
1479
  USAGE
1479
- $ mw app ssh [INSTALLATION-ID] [--cd] [--info]
1480
+ $ mw app ssh [INSTALLATION-ID] [--cd] [--info] [--test]
1480
1481
 
1481
1482
  ARGUMENTS
1482
1483
  INSTALLATION-ID ID or short ID of an app installation; this argument is optional if a default app installation is set
@@ -1485,6 +1486,7 @@ ARGUMENTS
1485
1486
  FLAGS
1486
1487
  --[no-]cd change to installation path after connecting
1487
1488
  --info only print connection information, without actually connecting
1489
+ --test test connection and exit
1488
1490
 
1489
1491
  DESCRIPTION
1490
1492
  Connect to an app via SSH
@@ -1778,6 +1780,20 @@ DESCRIPTION
1778
1780
  don't have to specify them on every command.
1779
1781
  ```
1780
1782
 
1783
+ ## `mw context reset`
1784
+
1785
+ Reset context values
1786
+
1787
+ ```
1788
+ USAGE
1789
+ $ mw context reset
1790
+
1791
+ DESCRIPTION
1792
+ Reset context values
1793
+
1794
+ This command resets any values for common parameters that you've previously set with 'context set'.
1795
+ ```
1796
+
1781
1797
  ## `mw context set`
1782
1798
 
1783
1799
  Set context values for the current project, org or server
@@ -1937,14 +1953,12 @@ Create a new cron job
1937
1953
 
1938
1954
  ```
1939
1955
  USAGE
1940
- $ mw cronjob create --description <value> --interval <value> [-p <value>] [-i <value>] [-q] [--disable] [--email
1941
- <value>] [--url <value> | --command <value>] [--interpreter <value>]
1956
+ $ mw cronjob create --description <value> --interval <value> [-i <value>] [-q] [--disable] [--email <value>]
1957
+ [--url <value> | --command <value>] [--interpreter <value>]
1942
1958
 
1943
1959
  FLAGS
1944
1960
  -i, --installation-id=<value> ID or short ID of an app installation; this flag is optional if a default app
1945
1961
  installation is set in the context
1946
- -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
1947
- context
1948
1962
  -q, --quiet suppress process output and only display a machine-readable summary.
1949
1963
  --command=<value> Command to execute for the cron job; either this or `--url` is required.
1950
1964
  --description=<value> (required) Description of the cron job
@@ -1959,15 +1973,10 @@ FLAG DESCRIPTIONS
1959
1973
 
1960
1974
  ID or short ID of an app installation; this flag is optional if a default app installation is set in the context
1961
1975
 
1962
- May contain a short ID or a full ID of an app installation.; you can also use the "mw context set
1976
+ May contain a short ID or a full ID of an app installation; you can also use the "mw context set
1963
1977
  --installation-id=<VALUE>" command to persistently set a default app installation for all commands that accept this
1964
1978
  flag.
1965
1979
 
1966
- -p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the context
1967
-
1968
- May contain a short ID or a full ID of a project; you can also use the "mw context set --project-id=<VALUE>" command
1969
- to persistently set a default project for all commands that accept this flag.
1970
-
1971
1980
  -q, --quiet suppress process output and only display a machine-readable summary.
1972
1981
 
1973
1982
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
@@ -2258,7 +2267,7 @@ Create a dump of a MySQL database
2258
2267
 
2259
2268
  ```
2260
2269
  USAGE
2261
- $ mw database mysql dump DATABASE-ID -o <value> [-q] [-p <value>]
2270
+ $ mw database mysql dump DATABASE-ID -o <value> [-q] [-p <value>] [--temporary-user]
2262
2271
 
2263
2272
  ARGUMENTS
2264
2273
  DATABASE-ID The ID of the database (when a project context is set, you can also use the name)
@@ -2267,6 +2276,7 @@ FLAGS
2267
2276
  -o, --output=<value> (required) the output file to write the dump to ("-" for stdout)
2268
2277
  -p, --mysql-password=<value> the password to use for the MySQL user (env: MYSQL_PWD)
2269
2278
  -q, --quiet suppress process output and only display a machine-readable summary.
2279
+ --[no-]temporary-user create a temporary user for the dump
2270
2280
 
2271
2281
  FLAG DESCRIPTIONS
2272
2282
  -o, --output=<value> the output file to write the dump to ("-" for stdout)
@@ -2287,6 +2297,14 @@ FLAG DESCRIPTIONS
2287
2297
 
2288
2298
  This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
2289
2299
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
2300
+
2301
+ --[no-]temporary-user create a temporary user for the dump
2302
+
2303
+ Create a temporary user for the dump. This user will be deleted after the dump has been created. This is useful if
2304
+ you want to dump a database that is not accessible from the outside.
2305
+
2306
+ If this flag is disabled, you will need to specify the password of the default user; either via the --mysql-password
2307
+ flag or via the MYSQL_PWD environment variable.
2290
2308
  ```
2291
2309
 
2292
2310
  ## `mw database mysql get DATABASE-ID`
@@ -2402,6 +2420,31 @@ FLAG DESCRIPTIONS
2402
2420
  scripts), you can use this flag to easily get the IDs of created resources for further processing.
2403
2421
  ```
2404
2422
 
2423
+ ## `mw database mysql user delete USER-ID`
2424
+
2425
+ Delete a MySQL user
2426
+
2427
+ ```
2428
+ USAGE
2429
+ $ mw database mysql user delete USER-ID [-q] [-f]
2430
+
2431
+ ARGUMENTS
2432
+ USER-ID ID of the MySQL user to delete.
2433
+
2434
+ FLAGS
2435
+ -f, --force Do not ask for confirmation
2436
+ -q, --quiet suppress process output and only display a machine-readable summary.
2437
+
2438
+ DESCRIPTION
2439
+ Delete a MySQL user
2440
+
2441
+ FLAG DESCRIPTIONS
2442
+ -q, --quiet suppress process output and only display a machine-readable summary.
2443
+
2444
+ This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
2445
+ scripts), you can use this flag to easily get the IDs of created resources for further processing.
2446
+ ```
2447
+
2405
2448
  ## `mw database mysql user get ID`
2406
2449
 
2407
2450
  Get a MySQL user.