41 lines
811 B
PHP
41 lines
811 B
PHP
|
<?php
|
||
|
namespace Deployer;
|
||
|
|
||
|
require 'recipe/symfony.php';
|
||
|
|
||
|
// Project name
|
||
|
set('application', 'plant-exchange');
|
||
|
|
||
|
// Project repository
|
||
|
set('repository', 'ssh://git@git.thisfro.ch:222/thisfro/plant-exchange.git');
|
||
|
|
||
|
// [Optional] Allocate tty for git clone. Default value is false.
|
||
|
set('git_tty', true);
|
||
|
|
||
|
// Shared files/dirs between deploys
|
||
|
add('shared_files', []);
|
||
|
add('shared_dirs', []);
|
||
|
|
||
|
// Writable dirs by web server
|
||
|
add('writable_dirs', []);
|
||
|
|
||
|
|
||
|
// Hosts
|
||
|
|
||
|
host('pflaenz.li')
|
||
|
->set('deploy_path', '~/{{application}}');
|
||
|
|
||
|
// Tasks
|
||
|
|
||
|
task('build', function () {
|
||
|
run('cd {{release_path}} && build');
|
||
|
});
|
||
|
|
||
|
// [Optional] if deploy fails automatically unlock.
|
||
|
after('deploy:failed', 'deploy:unlock');
|
||
|
|
||
|
// Migrate database before symlink new release.
|
||
|
|
||
|
before('deploy:symlink', 'database:migrate');
|
||
|
|