No description
  • PHP 60.8%
  • Go Template 18.9%
  • TypeScript 14.6%
  • JavaScript 3.3%
  • Shell 1.8%
  • Other 0.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-05 10:47:26 +02:00
.agents/skills skills hinzugefügt 2026-07-28 16:56:10 +02:00
.ddev wip tasks 2026-07-29 20:39:08 +02:00
.vscode [TASK] KI-Kontext und Repo-Hygiene 2026-07-28 17:06:30 +02:00
build [RELEASE] Version 0.1.18 2026-08-04 13:59:54 +02:00
config [FEATURE] Implement In-Place Restore Functionality for Backups 2026-07-30 11:03:49 +02:00
db [TASK] Frischen DDEV-Dump db/develop.sql.gz einchecken 2026-08-03 19:37:26 +02:00
docs [DOCS] Clarify site base URL behavior in installer documentation and messages 2026-08-04 13:26:33 +02:00
packages [RELEASE] Version 0.1.18 2026-08-04 13:59:54 +02:00
public [BUGFIX] public/.htaccess aus TYPO3-Referenz wiederherstellen (T3V-006) 2026-07-28 17:40:00 +02:00
scripts [SECURITY] Enhance installer security with HMAC key integration and improved session handling 2026-08-04 12:40:26 +02:00
t3vault [I18N] Update English and German translations for due-runner notifications and backup task hints 2026-08-05 10:47:26 +02:00
tests [DOCS] Clarify site base URL behavior in installer documentation and messages 2026-08-04 13:26:33 +02:00
typo3temp/var/cache/code/di [FEATURE] Implement In-Place Restore Functionality for Backups 2026-07-30 11:03:49 +02:00
var/labels/de Auth 2026-07-24 16:02:01 +02:00
.editorconfig [TASK] KI-Kontext und Repo-Hygiene 2026-07-28 17:06:30 +02:00
.gitignore ignore /dist 2026-08-03 23:31:37 +02:00
.php-cs-fixer.php [FEATURE] Enhance Restore Installer and Build Process 2026-08-03 12:29:45 +02:00
AGENTS.md [TASK] TER-ZIP-Build mit korrekter Wurzel und Guard 2026-08-03 23:30:18 +02:00
CLAUDE.md [TASK] KI-Kontext und Repo-Hygiene 2026-07-28 17:06:30 +02:00
composer.json [RELEASE] Typ typo3-cms-extension und Version 0.1.15 2026-08-03 16:13:18 +02:00
composer.lock wip tasks 2026-07-29 20:39:08 +02:00
LICENSE init TYPO3 2025-11-12 22:29:38 +01:00
README.md init TYPO3 2025-11-12 22:29:38 +01:00
SECURITY-AUDIT.md [SECURITY] Enhance installer security with HMAC key integration and improved session handling 2026-08-04 12:40:26 +02:00
skills-lock.json skills hinzugefügt 2026-07-28 16:56:10 +02:00
t3vault.code-workspace [FEATURE] Enhance Backup Directory Management and Configuration 2026-07-29 11:53:53 +02:00
tsconfig.json BugFixes 2026-07-27 18:41:49 +02:00

TYPO3 CMS Base Distribution

Get going quickly with TYPO3 CMS.

Prerequisites

Quickstart

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

Note that this distribution installs most, but not all of the TYPO3 CMS core extensions. Depending on your need you might also want to install other TYPO3 extensions from packagist.org.

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.

export TYPO3_SETUP_ADMIN_PASSWORD=$(tr -dc "_A-Za-z0-9#=$()/" < /dev/urandom | head -c24)
composer exec -- typo3 setup \
    --no-interaction \
    --server-type=other \
    --driver=sqlite \
    --admin-username=admin \
    --admin-email="info@example.com" \
    --project-name="My TYPO3 Project" \
    --create-site="http://localhost:8000/"
echo "Admin password: ${TYPO3_SETUP_ADMIN_PASSWORD}"

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.

Next steps

License

GPL-2.0 or later