jira-card-printer/deploy.php
Dávid Danyi 2fbedeff97 * url fixes
* set value of external id if it exists
2016-08-30 13:38:11 +02:00

21 lines
573 B
PHP

<?php
require 'recipe/common.php';
server('prod', 'alfheim.ragnarok.yvan.hu', 2206)
->user('yvan')
->forwardAgent() // You can use identity key, ssh config, or username/password to auth on the server.
->stage('production')
->env('deploy_path', '/mnt/apps/jira-card-printer'); // Define the base path to deploy your project to.
set('repository', 'https://gogs.ragnarok.yvan.hu/yvan/jira-card-printer.git');
env('branch', 'taurus-xft');
task('deploy', [
'deploy:prepare',
'deploy:release',
'deploy:update_code',
'deploy:symlink',
'cleanup',
]);