Upgrade to TYPO3 9.5 LTS

This commit is contained in:
Björn Fromme
2019-06-06 17:20:29 +02:00
parent adab7fb39a
commit 3c472eb973
989 changed files with 4924 additions and 3674 deletions
+9 -5
View File
@@ -4,7 +4,7 @@ namespace Deployer;
require 'recipe/typo3.php';
set('typo3_webroot', 'web');
set('application', 'typo3-deployer');
set('application', 'ep-reisen-typo3');
set('repository', '[email protected]:dreipunktnull/ep-reisen-web');
set('git_tty', true);
@@ -17,6 +17,10 @@ add('shared_files', [
'{{typo3_webroot}}/typo3conf/LocalConfiguration.php'
]);
add('shared_dirs', [
'config/sites',
]);
host('production')
->hostname('host.3punkt0.com')
->user('ep-reisen')
@@ -35,15 +39,15 @@ task('build', function () {
task('upload:epevents', function () {
upload(
__DIR__ . '/web/typo3conf/ext/ep_events/Resources/Public/',
'{{release_path}}/web/typo3conf/ext/ep_events/Resources/Public'
__DIR__ . '/public/typo3conf/ext/ep_events/Resources/Public/',
'{{release_path}}/public/typo3conf/ext/ep_events/Resources/Public'
);
});
task('upload:eptheme', function () {
upload(
__DIR__ . '/web/typo3conf/ext/ep_theme/Resources/Public/',
'{{release_path}}/web/typo3conf/ext/ep_theme/Resources/Public'
__DIR__ . '/public/typo3conf/ext/ep_theme/Resources/Public/',
'{{release_path}}/public/typo3conf/ext/ep_theme/Resources/Public'
);
});