pixelbrackets / typo3-cmsbasedistribution

:twisted_rightwards_arrows: Fork of the project »TYPO3 Base Distribution« to send pull requests

Home Page:https://github.com/TYPO3/TYPO3.CMS.BaseDistribution

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TYPO3 CMS Base Distribution

Get going quickly with TYPO3 CMS.

Prerequisites

Quickstart

  • composer create-project typo3/cms-base-distribution project-name ^11
  • cd project-name

Setup

To start an interactive installation, you can do so by executing the following command and then follow the wizard:

composer exec 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.

composer exec 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.

Please be aware that the built-in web server is single threaded and only meant to be used for development.

License

GPL-2.0 or later

About

:twisted_rightwards_arrows: Fork of the project »TYPO3 Base Distribution« to send pull requests

https://github.com/TYPO3/TYPO3.CMS.BaseDistribution

License:GNU General Public License v2.0