-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.php
94 lines (80 loc) · 1.94 KB
/
deploy.php
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
namespace Deployer;
require 'recipe/laravel.php';
// Project name
set('application', 'casper');
// Project repository
set('repository', '[email protected]:atracz/casper.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', []);
// Relative paths to remove from server
add('clear_paths', [
'.git',
'_docker',
'tests',
'.babelrc',
'.editorconfig',
'.env.example',
'.gitattributes',
'.gitignore',
'.gitlab-ci.yaml',
'docker-compose.yaml',
'Makefile',
'phpunit.xml',
'server.php',
'webpack.mix.js',
'changelog.md',
'readme.md',
'deploy.php',
]);
// Writable dirs by web server
add('writable_dirs', []);
set('allow_anonymous_stats', false);
// Hosts
host('atracz.saturn.polcode.com')
->port(50022)
->set('keep_releases', 1)
->stage('dev')
->set('branch', 'master')
->set('deploy_path', '~/projects/casper/deployer');
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
desc('Execute artisan optimize');
task('artisan:optimize', function () {
run('{{bin/php}} {{release_path}}/artisan optimize');
});
desc('Build project assets');
task('deploy:assets', function () {
runLocally('npm install');
runLocally('npm run prod');
upload('public', '{{release_path}}');
});
/**
* Main task
*/
desc('Deploy your project');
task('deploy', [
'deploy:info',
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:vendors',
'deploy:assets',
'deploy:writable',
'artisan:storage:link',
'artisan:view:clear',
'artisan:cache:clear',
'artisan:config:cache',
'artisan:optimize',
'deploy:clear_paths',
'artisan:migrate',
'deploy:symlink',
'deploy:unlock',
'cleanup',
]);
after('deploy', 'success');