-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Update to latest v12 main branches
- Loading branch information
Showing
2 changed files
with
36 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ To start an interactive installation, you can do so by executing the following | |
command and then follow the wizard: | ||
|
||
```bash | ||
composer exec typo3cms install:setup | ||
composer exec typo3 setup | ||
``` | ||
|
||
### Setup unattended (optional) | ||
|
@@ -28,17 +28,19 @@ To do this, you need to execute the following command and substitute the argumen | |
with your own environment configuration. | ||
|
||
```bash | ||
composer exec typo3cms install:setup \ | ||
composer exec typo3 setup \ | ||
--no-interaction \ | ||
--database-user-name=typo3 \ | ||
--database-user-password=typo3 \ | ||
--database-host-name=127.0.0.1 \ | ||
--database-port=3306 \ | ||
--database-name=typo3 \ | ||
--use-existing-database \ | ||
--admin-user-name=admin \ | ||
--admin-password=password \ | ||
--site-setup-type=site | ||
--driver=mysqli \ | ||
--username=typo3 \ | ||
--password=typo3 \ | ||
--host=127.0.0.1 \ | ||
--port=3306 \ | ||
--dbname=typo3 \ | ||
--admin-username=admin \ | ||
--admin-email="[email protected]" \ | ||
--admin-user-password=password \ | ||
--project-name="My TYPO3 Project" \ | ||
--create-site="https://localhost/" | ||
``` | ||
|
||
### Development server | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters