2023-08-16 14:33:21 +02:00
|
|
|
#!/usr/bin/env php
|
2023-08-16 14:28:06 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use App\Kernel;
|
|
|
|
use Ardent\Undercurrent\Config\AppConfig;
|
2023-08-16 16:04:35 +02:00
|
|
|
use Ardent\Undercurrent\Console\Console;
|
2023-08-16 14:28:06 +02:00
|
|
|
|
|
|
|
require_once dirname(__DIR__) . '/vendor/autoload.php';
|
|
|
|
|
|
|
|
$kernel = new Kernel(new AppConfig(__DIR__ . '/../app'));
|
|
|
|
$container = $kernel->setup();
|
|
|
|
|
2023-08-16 16:04:35 +02:00
|
|
|
$console = new Console($container);
|
2023-08-17 15:41:25 +02:00
|
|
|
$console->run();
|