This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
composer create-project cpsit/project-builder cpstest | |
Creating a "cpsit/project-builder" project at "./cpstest" | |
Info from https://repo.packagist.org: #StandWithUkraine | |
Installing cpsit/project-builder (1.0.1) | |
- Installing cpsit/project-builder (1.0.1): Extracting archive | |
Created project in /Users/wolfgang/htdocs/cpstest | |
Loading composer repositories with package information | |
Updating dependencies | |
Lock file operations: 109 installs, 0 updates, 0 removals | |
- Locking armin/editorconfig-cli (1.5.2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"repositories": [ | |
{ "type": "composer", "url": "https://composer.typo3.org/" }, | |
{ "type": "path", "url": "./Packages/*" } | |
], | |
"name": "typo3/cms-base-distribution", | |
"description" : "TYPO3 CMS Base Distribution", | |
"license": "GPL-2.0-or-later", | |
"require": { | |
"typo3/cms-backend": "^11.5", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load default processing options | |
imports: | |
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Processing.yaml" } | |
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Base.yaml" } | |
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Plugins.yaml" } | |
# Add configuration for the editor | |
# For complete documentation see http://docs.ckeditor.com/#!/api/CKEDITOR.config | |
editor: | |
config: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load default processing options | |
imports: | |
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Processing.yaml" } | |
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Base.yaml" } | |
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Plugins.yaml" } | |
# Add configuration for the editor | |
# For complete documentation see http://docs.ckeditor.com/#!/api/CKEDITOR.config | |
editor: | |
config: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"repositories": [ | |
{ "type": "composer", "url": "https://composer.typo3.org/" }, | |
{ "type": "path", "url": "./Packages/*" } | |
], | |
"name": "typo3/cms-base-distribution", | |
"description" : "TYPO3 CMS Base Distribution", | |
"license": "GPL-2.0-or-later", | |
"require": { | |
"typo3/cms-backend": "^11.5", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"repositories": { | |
"0": { | |
"type": "path", | |
"url": "./Packages/t3see2021" | |
} | |
}, | |
"require": { | |
"typo3/cms-about": "^11.5", | |
"typo3/cms-backend": "^11.5", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Deployer; | |
# Call default recipe | |
require 'recipe/common.php'; | |
require 'recipe/cachetool.php'; | |
set('cachetool', '127.0.0.1:9000'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
domain.de: | |
host: serveradresse/ip | |
stage: production | |
branch: master | |
user: ssh-username | |
identityFile: ~ | |
deploy_path: /home/www/projekt_deployment/production | |
http_user: user | |
http_group: usergroup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tt_content.2cols < lib.contentElement | |
tt_content.2cols { | |
templateName = 2cols | |
templateRootPaths.10 = EXT:vt11/Resources/Private/Extensions/container/Templates/ | |
dataProcessing { | |
201 = B13\Container\DataProcessing\ContainerProcessor | |
201 { | |
colPos = 201 | |
as = childrenLeft | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### | |
# | |
# Example .htaccess file for TYPO3 CMS - for use with Apache Webserver | |
# | |
# This file includes settings for the following configuration options: | |
# | |
# - Compression | |
# - Caching | |
# - MIME types | |
# - Cross Origin requests |