This commit is contained in:
2024-08-22 19:49:44 -04:00
parent a617bcf040
commit d251d8bd7d
14 changed files with 2971 additions and 0 deletions

12
app/bin/console.php Normal file
View File

@ -0,0 +1,12 @@
<?php
$app = require_once implode(DIRECTORY_SEPARATOR, [
dirname(__DIR__),
'bootstrap',
'app.php'
]);
try {
$app->run();
} catch (Exception $e) {
$app->getContainer()->get(Psr\Log\LoggerInterface::class)->error($e);
exit(1);
}

3
app/bin/manager Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
php /app/bin/console.php $@