This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/Console/Command/ServeCommand.php
2016-07-30 15:48:09 +02:00

31 lines
661 B
PHP

<?php
/**
* Holds the serve command controller.
*
* @package Sakura
*/
namespace Sakura\Console\Command;
use CLIFramework\Command;
class ServeCommand extends Command
{
public function brief()
{
return 'Sets up a local development server.';
}
public function execute()
{
$document_root = addslashes(ROOT . 'public/');
$router_proxy = addslashes(ROOT . 'server.php');
$php_dir = PHP_BINDIR;
$host = config('dev.host');
$this->getLogger()->writeln("Starting Sakura development server on {$host}.");
exec("{$php_dir}/php -S {$host} -t {$document_root} {$router_proxy}");
}
}