mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-25 01:33:10 +01:00
14 lines
312 B
PHP
14 lines
312 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Deployer;
|
|
|
|
set('application', 'deployer-e2e');
|
|
host('server.test')
|
|
->setDeployPath('/var/www/html')
|
|
->setTag('e2e')
|
|
->setRemoteUser('deployer')
|
|
->setSshArguments([
|
|
'-o UserKnownHostsFile=/dev/null',
|
|
'-o StrictHostKeyChecking=no',
|
|
]);
|