This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.php
72 lines (51 loc) · 1.44 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
<?php
namespace Deployer;
require 'recipe/common.php';
// Project name
set('application', 'Statamic demo site for W3C');
// Project repository
set('repository', '[email protected]:studio24/statamic-demo.git');
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', true);
set('http_user', 'www-data');
// Shared files/dirs between deploys
set('shared_files', ['.env','config/statamic/protect.php','storage/framework/cache/']);
set('shared_dirs', [
'public/assets'
]);
// Writable dirs by web server
set('writable_dirs', ['content', 'resources', 'public/assets', 'users']);
set('allow_anonymous_stats', false);
// Custom
set('keep_releases', 10);
// Composer install for custom S24.
task('deploy:s24:composer',function(){
cd('{{release_path}}');
run('composer install');
run('chmod 777 -R storage');
});
// Hosts
host('development')
->stage('development')
->hostname('128.30.54.149')
->user('studio24')
->set('deploy_path','/var/www/vhosts/statamic-demo/development');
// Tasks
desc('Deploy Statamic CMS Demo');
task('deploy', [
'deploy:info',
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:s24:composer',
'deploy:writable',
'deploy:clear_paths',
'deploy:symlink',
'deploy:unlock',
'cleanup',
'success'
]);
// [Optional] If deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');