35 lines
1.4 KiB
PHP
35 lines
1.4 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the Thelia package. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
use Symfony\Component\Dotenv\Dotenv;
|
|
use Symfony\Component\ErrorHandler\Debug;
|
|
use Thelia\Core\HttpFoundation\Request;
|
|
|
|
//use Symfony\Component\DependencyInjection;
|
|
|
|
$env = 'prod';
|
|
$loader = require __DIR__ . '/../bootstrap.php';
|
|
|
|
(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
|
|
|
|
if ($_SERVER['APP_DEBUG']) {
|
|
umask(0000);
|
|
|
|
Debug::enable();
|
|
}
|
|
|
|
$thelia = new App\Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
|
|
$request = Request::createFromGlobals();
|
|
$response = $thelia->handle($request);
|
|
$response->send();
|
|
$thelia->terminate($request, $response);
|