<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
// if (!str_starts_with($_SERVER['REMOTE_ADDR'], '136.144.235.180')) {
// return new Kernel('prod', false);
// }
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};