makerbundle
This commit is contained in:
parent
fe4e4fa940
commit
de657015f2
2 changed files with 25 additions and 3 deletions
22
deploy.php
Normal file
22
deploy.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
namespace Deployer;
|
||||
|
||||
require 'recipe/symfony.php';
|
||||
|
||||
// Config
|
||||
|
||||
set('repository', 'http://192.168.178.111:3000/jan/test.git');
|
||||
|
||||
add('shared_files', []);
|
||||
add('shared_dirs', []);
|
||||
add('writable_dirs', []);
|
||||
|
||||
// Hosts
|
||||
|
||||
host('192.168.178.106')
|
||||
->set('remote_user', 'deployer')
|
||||
->set('deploy_path', '~/test');
|
||||
|
||||
// Hooks
|
||||
|
||||
after('deploy:failed', 'deploy:unlock');
|
Loading…
Add table
Add a link
Reference in a new issue