a9f / gsb11-distribution
TYPO3 distribution based on the Government Site Builder (GSB) version 11
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- itzbund/gsb-sitepackage: dev-main
- typo3/cms-backend: ^12.4.0
- typo3/cms-belog: ^12.4.0
- typo3/cms-beuser: ^12.4.0
- typo3/cms-core: ^12.4.0
- typo3/cms-dashboard: ^12.4.0
- typo3/cms-extbase: ^12.4.0
- typo3/cms-extensionmanager: ^12.4.0
- typo3/cms-felogin: ^12.4.0
- typo3/cms-filelist: ^12.4.0
- typo3/cms-fluid: ^12.4.0
- typo3/cms-fluid-styled-content: ^12.4.0
- typo3/cms-form: ^12.4.0
- typo3/cms-frontend: ^12.4.0
- typo3/cms-impexp: ^12.4.0
- typo3/cms-info: ^12.4.0
- typo3/cms-install: ^12.4.0
- typo3/cms-reactions: ^12.4.0
- typo3/cms-rte-ckeditor: ^12.4.0
- typo3/cms-seo: ^12.4.0
- typo3/cms-setup: ^12.4.0
- typo3/cms-sys-note: ^12.4.0
- typo3/cms-t3editor: ^12.4.0
- typo3/cms-tstemplate: ^12.4.0
- typo3/cms-viewpage: ^12.4.0
- typo3/cms-webhooks: ^12.4.0
This package is auto-updated.
Last update: 2024-10-08 14:20:34 UTC
README
Get going quickly with the GSB11 and TYPO3 CMS.
Why this distribution?
The default GSB11 setup, as intended by its creators, is meant to be a single sitepackage that is passed on for hosting inside a well-defined, limited infrastructure. This is not what the default setup for TYPO3 looks like, where developers have full control of the whole project including the root dependencies, and can architect their solution with additional packages.
To enable such a setup also for the GSB, this distribution was created. It is not meant as a replacement for any GSB component or to evoke any kind of competition.
The kickstarter for the GSB sitepackages
has been integrated in packages/sitepackage/
. Feel free to adjust it to your needs.
Prerequisites
- PHP 8.2+
- Composer
Quickstart
composer create-project a9f/gsb11-distribution project-name
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.
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 and only meant to be used for development.
License
GPL-2.0 or later