-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.php
52 lines (36 loc) · 1.32 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
<?php
namespace Deployer;
require 'recipe/typo3.php';
// Project name
set('application', 'ffpi-webseite');
// Project repository
set('repository', 'git@github.com:freifunk-pinneberg/website.git');
set('git_recursive', false);
set('branch', 'master');
// TYPO3 Path
set('typo3_webroot', 'web');
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', true);
// Shared files/dirs between deploys
add('shared_files', ['web/typo3conf/AdditionalConfiguration.php']);
add('shared_dirs', ['var', 'fileadmin']);
// Writable dirs by web server
add('writable_dirs', ['var']);
// Hosts
host('pinneberg.freifunk.net')
->forwardAgent(true)
->set('deploy_path', '/var/www/vhosts/pinneberg.freifunk.net_v3');
// Tasks
// Custom Symlink Task
desc('Create symlinks');
task('create_symlinks', function () {
run('cd {{release_path}}/web && ln -s /var/www/vhosts/download.pinneberg.freifunk.net/ download');
run('cd {{release_path}}/web && ln -s /var/www/vhosts/forum.pinneberg.freifunk.net/ forum');
run('cd {{release_path}}/web && ln -s /var/www/vhosts/piwik.pinneberg.freifunk.net/ piwik');
});
before('deploy:unlock', 'create_symlinks');
//task('build', function () {
// run('cd {{release_path}} && build');
//});
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');