mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 01:02:24 +01:00
10 lines
142 B
PHP
10 lines
142 B
PHP
<?php
|
|
|
|
localServer('localhost');
|
|
localServer('server1');
|
|
localServer('server2');
|
|
|
|
task('test', function () {
|
|
writeln('Hello world!');
|
|
});
|