add Manual

This commit is contained in:
Marko
2024-06-06 10:18:48 +02:00
parent 4ef896c895
commit 461ebae47c
10 changed files with 138 additions and 37 deletions

22
deploy.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
namespace Deployer;
require 'recipe/symfony.php';
// Config
set('repository', 'https://gitbase.de/OrangeJungle/CdsConnector.git');
add('shared_files', []);
add('shared_dirs', []);
add('writable_dirs', []);
// Hosts
host('connector.orangejungle.eu')
->set('remote_user', 'orangejungle')
->set('deploy_path', '~/CdsConnector');
// Hooks
after('deploy:failed', 'deploy:unlock');