Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add magento2 base recipe #911

Merged
merged 1 commit into from
Jan 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions recipe/magento2.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<?php
namespace Deployer;

require_once __DIR__ . '/common.php';

// Configuration
set('shared_files', ['app/etc/env.php', 'var/.maintenance.ip']);
set('shared_dirs', ['var/log', 'var/backups', 'pub/media']);
set('writable_dirs', ['var', 'pub/static', 'pub/media']);
set('clear_paths', ['var/generation/*', 'var/cache/*']);

// Tasks
desc('Enable all modules'); task('magento:enable', function () {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add new line before task.

run("{{bin/php}} {{release_path}}/bin/magento module:enable --all");
writeln("Modules enabled");
});

desc('Compile magento di');
task('magento:compile', function () {
run("{{bin/php}} {{release_path}}/bin/magento setup:di:compile");
writeln("DI compiled");
});

desc('Deploy assets');
task('magento:deploy:assets', function () {
run("{{bin/php}} {{release_path}}/bin/magento setup:static-content:deploy");
writeln("Static assets deployed");
});

desc('Enable maintenance mode');
task('magento:maintenance:enable', function () {
run("{{bin/php}} {{deploy_path}}/current/bin/magento maintenance:enable");
});

desc('Disable maintenance mode');
task('magento:maintenance:disable', function () {
run("{{bin/php}} {{deploy_path}}/current/bin/magento maintenance:disable");
});

desc('Upgrade magento database');
task('magento:upgrade:db', function () {
run("{{bin/php}} {{release_path}}/bin/magento setup:db-schema:upgrade");
run("{{bin/php}} {{release_path}}/bin/magento setup:db-data:upgrade");
writeln("Database upgraded");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to writeln, dep will inform user itself.

});

desc('Flush Magento Cache');
task('magento:cache:flush', function () {
run("{{bin/php}} {{release_path}}/bin/magento cache:flush");
writeln("Magento cache flushed");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here, deployer will print:

✔︎ Executing task magento:cache:flush

});

desc('Deploy your project');
task('deploy', [
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:writable',
'deploy:vendors',
'deploy:clear_paths',
'deploy:symlink',
'deploy:unlock',
'cleanup',
'success'
]);

desc('Magento2 deployment operations');
task('deploy:magento', [
'magento:enable',
'magento:compile',
'magento:deploy:assets',
'magento:maintenance:enable',
'magento:upgrade:db',
'magento:cache:flush',
'magento:maintenance:disable'
]);

after('deploy:clear_paths', 'deploy:magento');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's better to have only one deploy task in standard recipes.