2022-09-01 11:54:43 +00:00
|
|
|
<?php
|
|
|
|
|
2022-12-04 15:19:40 +00:00
|
|
|
declare(strict_types=1);
|
2022-09-01 11:54:43 +00:00
|
|
|
|
2022-09-01 15:57:29 +00:00
|
|
|
use App\Core\Bootstrapper;
|
2024-09-15 10:00:02 +00:00
|
|
|
use Symfony\Component\Dotenv\Dotenv;
|
2022-09-01 15:57:29 +00:00
|
|
|
|
2022-09-01 11:54:43 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Bootstrap all classes, settings, etc.
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
2022-09-01 15:57:29 +00:00
|
|
|
|
|
|
|
require '../vendor/autoload.php';
|
2024-09-15 10:00:02 +00:00
|
|
|
(new Dotenv())->loadEnv(root_path() . '/.env');
|
2022-09-01 15:57:29 +00:00
|
|
|
Bootstrapper::bootSettings();
|
|
|
|
Bootstrapper::bootTwig();
|
2024-09-24 17:13:39 +00:00
|
|
|
Bootstrapper::bootCore();
|
2022-09-01 15:57:29 +00:00
|
|
|
Bootstrapper::bootRoutes();
|
2022-09-01 11:54:43 +00:00
|
|
|
Flight::start();
|