2024-01-19 23:30:33 +01:00
2024-01-20 02:45:48 +01:00
2024-01-20 00:39:12 +01:00
2024-01-20 02:45:48 +01:00
2024-01-20 00:38:02 +01:00
2024-01-20 02:45:48 +01:00
2024-01-20 00:38:02 +01:00
2024-01-19 23:30:33 +01:00
2024-01-20 00:38:02 +01:00
2024-01-19 23:30:33 +01:00
2024-01-20 00:38:02 +01:00

TYPO3 CMS

Vor Benutzung

  1. Docker Desktop installieren (oder nur die Docker Engine)

    Windows Nutzer: WSL2 installieren, siehe ddev docs

  2. ddev installieren

  3. TYPO3 12 mit ddev instalieren

    ddev config --project-type=typo3 --docroot=public --create-docroot --php-version 8.1
    ddev composer create --no-install "typo3/cms-base-distribution:^12.4"
    ddev composer install
    ddev restart
    ddev exec touch public/FIRST_INSTALL
    
  4. Das T3Bootstrap Template laden

    curl -o t3bootstrap12.zip https://wappler.systems/fileadmin/t3bootstrap12_242828724/t3bootstrap12_20231114.zip
    unzip t3bootstrap12.zip
    

Benutzung

ddev launch

Originalinhalt der README

Prerequisites

Quickstart

  • composer create-project typo3/cms-base-distribution project-name ^12
  • 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 typo3 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 -- typo3 setup \
    --no-interaction \
    --driver=mysqli \
    --username=typo3 \
    --password=typo3 \
    --host=127.0.0.1 \
    --port=3306 \
    --dbname=typo3 \
    --admin-username=admin \
    --admin-email="info@typo3.org" \
    --admin-user-password=password \
    --project-name="My TYPO3 Project" \
    --create-site="https://localhost/"

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

Description
No description provided
Readme 517 KiB
Languages
PHP 100%