Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thelfensdrfer/yiisshconsole

SSH console commands for yii
https://github.com/thelfensdrfer/yiisshconsole

php ssh yii yii-console

Last synced: 3 months ago
JSON representation

SSH console commands for yii

Awesome Lists containing this project

README

        

# Yii SSH Console

Controller with ssh commands for the yii console.

## Example

```php
auth('example.com', [
'username' => 'myusername',
'password' => 'mypassword', // optional
]);

// Or via private key
/*
$this->auth('example.com', [
'username' => 'myusername',
'key' => '/path/to/private.key',
'password' => 'mykeypassword', // optional
]);
*/

$output = $this->run('echo "test"');
echo 'Output: ' . $output; // Output: test

$output = $this->run([
'cd /path/to/install',
'./put_offline.sh',
'git pull -f',
'composer install',
'./yii migrate --interactive=0',
'./build.sh',
'./yii cache/flush',
'./put_online.sh',
]);

// Or via callback
$this->run([
'cd /path/to/install',
'./put_offline.sh',
'git pull -f',
'composer install',
'./yii migrate --interactive=0',
'./build.sh',
'./yii cache/flush',
'./put_online.sh',
], function($line) {
echo $line;
});
}
}
```

And then in the local console:

```
./yiic deploy
```