================ CODE SNIPPETS ================ TITLE: Install TYPO3 via Mittwald CLI DESCRIPTION: This command creates a new TYPO3 installation. It supports various configuration options for installation mode, version, administrator details, and host setup. The `--install-mode` flag is required and can be set to `composer` or `symlink`. The `--version` flag specifies the TYPO3 version, defaulting to the latest. SOURCE: https://github.com/mittwald/cli/blob/master/docs/app.md#_snippet_16 LANGUAGE: APIDOC CODE: ``` Command: mw app install typo3 Description: Creates new TYPO3 installation. Usage: $ mw app install typo3 --version --install-mode composer|symlink [-p ] [-q] [--host ] [--admin-user ] [--admin-email ] [--admin-pass ] [--site-title ] [-w] [--wait-timeout ] Flags: -p, --project-id= ID or short ID of a project; this flag is optional if a default project is set in the context May contain a short ID or a full ID of a project; you can also use the "mw context set --project-id=" command to persistently set a default project for all commands that accept this flag. -q, --quiet suppress process output and only display a machine-readable summary This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in scripts), you can use this flag to easily get the IDs of created resources for further processing. -w, --wait wait for the resource to be ready. --admin-email= email address of your administrator user. email address that will be used for the first administrator user that is created during the TYPO3 installation. If unspecified, email address of your mStudio account will be used. This email address can be changed after the installation is finished. --admin-pass= password of your administrator user. The password that will be used for the first administrator user that is created during the TYPO3 installation. If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after the installation is finished --admin-user= Username for your administrator user. Username of the first administrator user which will be created during the TYPO3 installation. If unspecified, an adequate username will be generated. After the installation is finished, the username can be changed and additional administrator users can be created. --host= host to initially configure your TYPO3 installation with; needs to be created separately. Specify a host which will be used during the installation and as an initial host for the TYPO3 configuration. If unspecified, the default host for the given project will be used. This does not change the target of the used host and can be changed later by configuring the host and your TYPO3 installation. --install-mode=