12 lines
256 B
PHP
12 lines
256 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
require __DIR__ . '/../vendor/autoload.php';
|
||
|
|
||
|
$bootstrap = new App\Bootstrap;
|
||
|
$container = $bootstrap->bootWebApplication();
|
||
|
|
||
|
$application = $container->getByType(Nette\Application\Application::class);
|
||
|
$application->run();
|