-
Notifications
You must be signed in to change notification settings - Fork 81
/
deploy.php
192 lines (159 loc) · 4.33 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?php
declare(strict_types=1);
namespace Deployer;
require 'recipe/symfony.php';
require 'contrib/slack.php';
foreach (['.env', '.env.local'] as $filename) {
loadEnvVariables($filename);
}
function loadEnvVariables(string $filename): void
{
$file = file_get_contents($filename);
$lines = explode("\n", $file);
foreach ($lines as $line) {
if (!str_starts_with(trim($line), '#') && str_contains($line, '=')) {
putenv($line);
}
}
}
set('default_timeout', 6000);
// Project name
set('application', getenv('APP_NAME'));
set('repository', getenv('DEPLOY_GIT'));
set('git_tty', false);
// Slack Data
set('slack_webhook', getenv('SLACK_WEBHOOK'));
set('slack_text', 'Web-Team deploying `{{branch}}` to *{{target}}*');
set('slack_success_text', 'Deploy to *{{target}}* successful');
set('slack_success_color', '#4BB543');
// Symfony build set
set('symfony_env', 'prod');
// Symfony shared dirs
set('shared_dirs',
[
'var/log',
'var/sessions',
'public/resources',
'.jwt',
]);
// Shared files between deploys
add('shared_files',
[
'.env.local',
'.env.prod.local',
'.env.dev.local',
'google_cloud_key.json',
'.dkim/private.key',
]);
// Symfony writable dirs
set('writable_dirs',
[
'var/cache',
'var/log',
'var/sessions',
'public/resources',
]);
// Symfony executable and variable directories
set('bin_dir', 'bin');
set('var_dir', 'var');
set('web_dir', 'public');
set('public_dir', 'public');
set('allow_anonymous_stats', false);
// Hosts
host(getenv('DEPLOY_SHARE'))
->set('labels', ['stage' => 'share'])
->set('symfony_env', 'prod')
->set('branch', getenv('DEPLOY_SHARE_BRANCH'))
->set('deploy_path', '/var/www/share')
->set('remote_user', 'root')
;
// Tasks
// Manually define this task because deployer uses the old symfony structure with web instead of
// public. Change this when deployer gets updated.
task('install:assets', function () {
run('{{bin/console}} assets:install --symlink --relative public');
});
// For such sudo commands to work, the server must allow those commands without a password
// change the sudoers file if needed!
task('restart:nginx', function () {
run('/usr/sbin/service nginx restart');
});
task('restart:php-fpm', function () {
run('/usr/sbin/service php8.3-fpm restart');
});
task('install:npm', function () {
cd('{{release_path}}');
run('npm install');
});
task('deploy:encore', function () {
cd('{{release_path}}');
run('npm run prod');
});
task('deploy:jwt', function () {
cd('{{release_path}}');
run('sh docker/app/init-jwt-config.sh');
});
task('update:achievements', function () {
cd('{{release_path}}');
run('bin/console catrobat:update:achievements');
});
task('update:tags', function () {
cd('{{release_path}}');
run('bin/console catrobat:update:tags');
});
task('update:extensions', function () {
cd('{{release_path}}');
run('bin/console catrobat:update:extensions');
});
task('update:flavors', function () {
cd('{{release_path}}');
run('bin/console catrobat:update:flavors');
});
task('update:special', function () {
cd('{{release_path}}');
run('bin/console catrobat:update:special');
});
task('sonata:admin:setup:acl', function () {
cd('{{release_path}}');
run('bin/console sonata:admin:setup-acl');
});
// dump the .env file as .env.local.php to speed up the loading of the env vars
task('dump:env', function () {
cd('{{release_path}}');
run('bin/console dotenv:dump prod');
});
/*
* Main task
*/
desc('Start the deployment process');
task('deploy', [
'deploy:prepare',
'deploy:clear_paths',
'deploy:vendors',
'install:assets',
'dump:env',
'deploy:cache:clear',
'deploy:writable',
'deploy:symlink',
'database:migrate',
'install:npm',
'deploy:encore',
'deploy:jwt',
'restart:nginx',
'restart:php-fpm',
'sonata:admin:setup:acl',
'update:flavors',
'update:achievements',
'update:tags',
'update:extensions',
'update:special',
'deploy:unlock',
'slack:notify:success',
])->desc('Deploy Catroweb!');
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
// Migrate database before symlink new release.
// should maybe not be done automatically. we can do that no problem but that is not that nice.
// before('deploy:symlink', 'database:migrate');
before('deploy:prepare', 'slack:notify');
after('deploy:failed', 'slack:notify:failure');