├── .ddev ├── config.yaml └── docker-compose.context.yaml ├── .devcontainer ├── ddev-install.sh └── devcontainer.json ├── .dockerignore ├── .editorconfig ├── .env.gitpod ├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── .gitpod.yml ├── .vscode └── settings.json ├── Build └── DownloadSitePackage │ ├── data.json │ └── generate_sitepackage.sh ├── DEVELOPMENT.md ├── Dockerfile ├── Makefile ├── README.md ├── composer.json ├── composer.lock ├── config ├── sites │ ├── main │ │ ├── config.yaml │ │ └── page.tsconfig │ └── main2 │ │ └── page.tsconfig └── system │ ├── additional.php │ ├── additional_ddev.php │ └── settings.php ├── docker-compose.yml ├── entrypoint.sh ├── gitpod-setup.sh └── packages └── .gitkeep /.ddev/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.ddev/config.yaml -------------------------------------------------------------------------------- /.ddev/docker-compose.context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.ddev/docker-compose.context.yaml -------------------------------------------------------------------------------- /.devcontainer/ddev-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.devcontainer/ddev-install.sh -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | config/system/settings.php 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.gitpod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.env.gitpod -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Build/DownloadSitePackage/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/Build/DownloadSitePackage/data.json -------------------------------------------------------------------------------- /Build/DownloadSitePackage/generate_sitepackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/Build/DownloadSitePackage/generate_sitepackage.sh -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/composer.lock -------------------------------------------------------------------------------- /config/sites/main/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/config/sites/main/config.yaml -------------------------------------------------------------------------------- /config/sites/main/page.tsconfig: -------------------------------------------------------------------------------- 1 | TCEMAIN { 2 | permissions.groupid = 1 3 | } 4 | -------------------------------------------------------------------------------- /config/sites/main2/page.tsconfig: -------------------------------------------------------------------------------- 1 | TCEMAIN { 2 | permissions.groupid = 1 3 | } 4 | -------------------------------------------------------------------------------- /config/system/additional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/config/system/additional.php -------------------------------------------------------------------------------- /config/system/additional_ddev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/config/system/additional_ddev.php -------------------------------------------------------------------------------- /config/system/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/config/system/settings.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /gitpod-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Documentation/site-introduction/HEAD/gitpod-setup.sh -------------------------------------------------------------------------------- /packages/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------