<?php namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel {
/**
* @var array
*/
protected $commands = [
...
"Kevinsimard\Deploy\Command\Task\DeployTask",
];
...
<?php
return [
// default connection name
"default" => "local",
// connections
"connections" => [
"local" => [
"host" => "127.0.0.1",
"username" => "username",
"password" => "password",
"key" => "",
"keytext" => "",
"keyphrase" => "",
"agent" => "",
],
],
// connection groups
"groups" => [
"web" => ["local"]
],
];