-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.php
More file actions
59 lines (45 loc) · 1.24 KB
/
deploy.php
File metadata and controls
59 lines (45 loc) · 1.24 KB
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
<?php
namespace Deployer;
require 'recipe/common.php';
// Project name
set('application', 'often');
// Project repository
set('repository', 'https://github.com/cngJo/often');
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', true);
// Shared files/dirs between deploys
set('shared_files', []);
set('shared_dirs', []);
// Writable dirs by web server
set('writable_dirs', []);
set('allow_anonymous_stats', false);
// Hosts
host('johannesprzymusinski.de')
->set('deploy_path', '/var/www/vhosts/often');
// Tasks
desc('Deploy your project');
task('deploy', [
'deploy:info',
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:writable',
'deploy:vendors',
'deploy:clear_paths',
'deploy:symlink',
'deploy:unlock',
'cleanup',
'success',
"copy_config",
"migrate_database"
]);
task("copy_config", function() {
run("cp ~/config/often.config.ini /var/www/vhosts/often/current/config.ini");
});
task("migrate_database", function() {
run("cd /var/www/vhosts/often/current && ./vendor/bin/doctrine-migrations migrate");
});
// [Optional] If deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');