forked from tchapi/slack-magic-8-ball
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.php
70 lines (60 loc) · 1.59 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';
// Configuration
set('ssh_type', 'native');
set('ssh_multiplexing', true);
serverList('deploy/servers.yml');
// Configuration
set('env', 'prod');
set('default_stage', 'production');
set('repository', '[email protected]:tchapi/slack-magic-8-ball.git');
set('shared_files', []);
set('shared_dirs', []);
set('writable_dirs', []);
set('bin/npm', function () {
return (string)run('which npm');
});
// Add clear_paths
set('clear_paths', [
'./README.md',
'./deploy.php',
'./.gitignore',
'./LICENSE',
'./structure.sqlite',
'./config.json.dist',
'./general.json.dist',
'./messages.json.dist',
'./_SOURCES_',
'./.git',
'./deploy',
]);
// Tasks
desc('Run NPM install');
task('deploy:npm_install', function() {
run("cd {{release_path}} && {{bin/npm}} install");
});
desc('Deploy production parameters');
task('deploy:parameters', function () {
upload('./deploy/config.{{env}}.json', '{{deploy_path}}/release/config.json');
upload('./deploy/general.{{env}}.json', '{{deploy_path}}/release/general.json');
upload('./deploy/messages.{{env}}.json', '{{deploy_path}}/release/messages.json');
});
desc('Deploy the project');
task('deploy', [
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:npm_install',
'deploy:shared',
'deploy:writable',
'deploy:clear_paths',
'deploy:symlink',
'deploy:unlock',
'cleanup',
'success'
]);
// [Optional] if deploy fails automatically unlock.
after('deploy:update_code', 'deploy:parameters');
after('deploy:failed', 'deploy:unlock');