-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeploy.php
More file actions
42 lines (28 loc) · 838 Bytes
/
deploy.php
File metadata and controls
42 lines (28 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
namespace Deployer;
require 'recipe/drupal8.php';
// Project name
set('application', 'my_project');
// Project repository
set('repository', 'git@github.com:rakeshf/drupal_gitpod.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('192.168.50.4')
->user('deployer')
->set('deploy_path', '/var/www/html');
// Tasks
task('build', function () {
run('cd {{release_path}} && build');
});
desc('Clear cache');
task('deploy:shared:install', function() {
run('cd {{release_path}} && composer install');
});
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');