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

30 lines
592 B
PHP
Raw Normal View History

2016-02-19 21:49:00 +00:00
<?php
/**
* Holds the serve command controller.
2016-02-20 11:20:58 +00:00
*
2016-02-19 21:49:00 +00:00
* @package Sakura
*/
namespace Sakura\Console\Command;
use CLIFramework\Command;
2016-03-25 01:31:57 +00:00
use Sakura\Config;
2016-02-19 21:49:00 +00:00
class ServeCommand extends Command
{
public function brief()
{
return 'Sets up a local development server.';
}
public function execute()
{
2016-03-25 01:31:57 +00:00
$document_root = addslashes(ROOT . 'public/');
$router_proxy = addslashes(ROOT . 'server.php');
$php_dir = PHP_BINDIR;
2016-07-26 17:29:53 +00:00
$host = config('dev.host');
2016-03-25 01:31:57 +00:00
exec("{$php_dir}/php -S {$host} -t {$document_root} {$router_proxy}");
2016-02-19 21:49:00 +00:00
}
}