@@ -9,26 +9,26 @@ Get going quickly with TYPO3 CMS.
99
1010## Quickstart
1111
12- * ` composer create-project typo3/cms-base-distribution project-name ^10 `
12+ * ` composer create-project typo3/cms-base-distribution project-name ^11 `
1313* ` cd project-name `
1414
15- ** Setup: **
15+ ### Setup
1616
1717To start an interactive installation, you can do so by executing the following
1818command and then follow the wizard:
1919
20- ```
21- php vendor/bin/ typo3cms install:setup
20+ ``` bash
21+ composer exec typo3cms install:setup
2222```
2323
24- ** Setup unattended (optional): **
24+ ### Setup unattended (optional)
2525
2626If you're a more advanced user, you might want to leverage the unattended installation.
2727To do this, you need to execute the following command and substitute the arguments
2828with your own environment configuration.
2929
30- ```
31- php vendor/bin/ typo3cms install:setup \
30+ ``` bash
31+ composer exec typo3cms install:setup \
3232 --no-interaction \
3333 --database-user-name=typo3 \
3434 --database-user-password=typo3 \
@@ -41,18 +41,18 @@ php vendor/bin/typo3cms install:setup \
4141 --site-setup-type=site
4242```
4343
44- ** Development server: **
44+ ### Development server
4545
4646While it's advised to use a more sophisticated web server such as
47- Apache 2 or nginx , you can instantly run the project by using PHPs` built-in
47+ Apache 2 or Nginx , you can instantly run the project by using PHPs` built-in
4848[ web server] ( https://secure.php.net/manual/en/features.commandline.webserver.php ) .
4949
5050* ` TYPO3_CONTEXT=Development php -S localhost:8000 -t public `
5151* open your browser at "http://localhost:8000 "
5252
53- Please be aware that the built-in web server is single threaded. Which is ultimately
54- a performance killer and may result in deadlocks if you execute too many requests at once .
53+ Please be aware that the built-in web server is single threaded and only meant
54+ to be used for development .
5555
56- # License
56+ ## License
5757
5858GPL-2.0 or later
0 commit comments