Adjust catalog image dimensions, add external product url for catalog

This commit is contained in:
Björn Fromme
2019-01-16 21:17:37 +01:00
parent 67c8d7d4f4
commit 084e2aa13b
6 changed files with 58 additions and 5 deletions
+16
View File
@@ -50,5 +50,21 @@ task('assets', [
'upload:eptheme',
]);
task('caches:flush', function () {
run('{{bin/php}} {{release_path}}/vendor/bin/typo3cms cache:flush');
});
task('languages:update', function () {
run('{{bin/php}} {{release_path}}/vendor/bin/typo3cms language:update');
});
task('database:update', function () {
run('{{bin/php}} {{release_path}}/vendor/bin/typo3cms database:updateschema');
});
before('deploy:symlink', 'assets');
before('deploy:symlink', 'database:update');
before('cleanup', 'caches:flush');
before('cleanup', 'languages:update');
after('deploy:failed', 'deploy:unlock');