https://github.com/gilbertsoft/typo3-bootstrap
https://github.com/gilbertsoft/typo3-bootstrap
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gilbertsoft/typo3-bootstrap
- Owner: gilbertsoft
- License: gpl-3.0
- Created: 2018-02-27T15:58:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-08-30T12:52:52.000Z (almost 6 years ago)
- Last Synced: 2025-07-28T19:51:04.343Z (11 months ago)
- Size: 83 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TYPO3 CMS Project Bootstrap
Get going quickly with TYPO3 CMS.
## Prerequisites
* PHP 7
* composer (https://getcomposer.org/download/)
* ISPConfig web folder structure
## Quickstart
* `cd /var/www/[website]/private`
* `su [user, e.g. webX]`
* `composer create-project gilbertsoft/typo3-bootstrap typo3 dev-[project]`
* `cd typo3`
**Setup:**
To start an interactive installation, you can do so by executing the following
command and then follow the wizard:
```
php[used PHP version, e.g. 7.2] vendor/bin/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 substite the arguments
with your own environment configuration.
```
php[used PHP version, e.g. 7.2] vendor/bin/typo3cms install:setup \
--non-interactive \
--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
```
# License
GPL-3.0 or later