mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 16:54:08 +01:00
11 lines
142 B
PHP
11 lines
142 B
PHP
<?php
|
|
|
|
namespace Deployer;
|
|
|
|
localhost('prod');
|
|
localhost('beta');
|
|
|
|
task('test_once', function () {
|
|
writeln('SHOULD BE ONCE');
|
|
})->once();
|