ochorocho / cms-base-distribution
TYPO3 CMS Base Distribution
Requires
- helhum/typo3-console: ^6.4.0
- typo3/cms-backend: ^11.0
- typo3/cms-belog: ^11.0
- typo3/cms-beuser: ^11.0
- typo3/cms-core: ^11.0
- typo3/cms-dashboard: ^11.0
- typo3/cms-extbase: ^11.0
- typo3/cms-extensionmanager: ^11.0
- typo3/cms-felogin: ^11.0
- typo3/cms-filelist: ^11.0
- typo3/cms-fluid: ^11.0
- typo3/cms-fluid-styled-content: ^11.0
- typo3/cms-form: ^11.0
- typo3/cms-frontend: ^11.0
- typo3/cms-impexp: ^11.0
- typo3/cms-info: ^11.0
- typo3/cms-install: ^11.0
- typo3/cms-recordlist: ^11.0
- typo3/cms-rte-ckeditor: ^11.0
- typo3/cms-seo: ^11.0
- typo3/cms-setup: ^11.0
- typo3/cms-sys-note: ^11.0
- typo3/cms-t3editor: ^11.0
- typo3/cms-tstemplate: ^11.0
- typo3/cms-viewpage: ^11.0
- 11.x-dev
- v11.0.0
- 10.x-dev
- v10.4.1
- v10.4.0
- v10.3.1
- v10.3.0
- v10.2.0
- v10.1.0
- v10.0.0
- 9.x-dev
- v9.5.0
- v9.4.0
- v9.3.1
- v9.3.0
- v9.2.1
- v9.2.0
- v9.1.2
- v9.1.1
- v9.1.0
- 8.x-dev
- v8.7.2
- v8.7.1
- v8.7.0
- 7.6.10
- 7.6.1
- 7.6.0
- 6.2.19
- 6.2.15
- 6.2.14
- 6.2.13
- 6.2.12
- 6.2.11
- 6.2.10
- 6.2.9
- 6.2.8
- 6.2.7
- 6.2.6
- 6.2.5
- 6.2.4
- 6.2.3
- 6.2.2
- 6.2.1
- 6.2.0
This package is auto-updated.
Last update: 2021-06-08 09:34:15 UTC
README
Get going quickly with TYPO3 CMS.
Prerequisites
- PHP 7.2
- Composer
Quickstart
composer create-project typo3/cms-base-distribution project-name ^10
cd project-name
Setup:
To start an interactive installation, you can do so by executing the following command and then follow the wizard:
php vendor/bin/typo3cms install:setup
Setup unattended (optional):
If you're a more advanced user, you might want to leverage the unattended installation. To do this, you need to execute the following command and substitute the arguments with your own environment configuration.
php vendor/bin/typo3cms install: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
Development server:
While it's advised to use a more sophisticated web server such as Apache 2 or nginx, you can instantly run the project by using PHPs` built-in web server.
TYPO3_CONTEXT=Development php -S localhost:8000 -t public
- open your browser at "http://localhost:8000"
Please be aware that the built-in web server is single threaded. Which is ultimately a performance killer and may result in deadlocks if you execute too many requests at once.
License
GPL-2.0 or later