mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
382 B
19 lines
382 B
#!/usr/bin/env php
|
|
|
|
<?php
|
|
require dirname(__FILE__) . '/vendor/autoload.php';
|
|
|
|
define('DOCUMENT_ROOT', dirname(__FILE__));
|
|
|
|
use Movim\Bootstrap;
|
|
use Movim\Console\DaemonCommand;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$bootstrap = new Bootstrap;
|
|
$bootstrap->boot();
|
|
|
|
$daemon = new DaemonCommand;
|
|
$application = new Application;
|
|
$application->add($daemon);
|
|
$application->run();
|
|
|