Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewfrench/t3
https://github.com/andrewfrench/t3
Last synced: about 9 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/andrewfrench/t3
- Owner: andrewfrench
- License: gpl-2.0
- Created: 2019-10-16T00:10:35.000Z (about 5 years ago)
- Default Branch: installed
- Last Pushed: 2020-11-18T21:09:26.000Z (almost 4 years ago)
- Last Synced: 2023-08-05T13:49:29.018Z (over 1 year ago)
- Language: PHP
- Size: 29.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TYPO3 CMS Base Distribution
Get going quickly with TYPO3 CMS.
## Prerequisites
* PHP 7.2
* [Composer](https://getcomposer.org/download/)## Quickstart
* `composer create-project typo3/cms-base-distribution project-name ^9`
* `cd project-name`**Setup:**
To start an interactive installation, you can do so by executing the following
command and then follow the wizard:```
php 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 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
```**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](https://secure.php.net/manual/en/features.commandline.webserver.php).* `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. Which is ultimately
a performance killer and may result in deadlocks if you execute too many requests at once.# License
GPL-2.0 or later