Add doctrine and seperate out the renderer

This commit is contained in:
Tim
2023-08-16 14:28:06 +02:00
parent 56e8caa26c
commit 59200be680
11 changed files with 2158 additions and 54 deletions

10
app/bin.php Normal file
View File

@ -0,0 +1,10 @@
<?php
use App\Kernel;
use Ardent\Undercurrent\Config\AppConfig;
require_once dirname(__DIR__) . '/vendor/autoload.php';
$kernel = new Kernel(new AppConfig(__DIR__ . '/../app'));
$container = $kernel->setup();