Files
node/index.php
2019-09-15 01:27:56 +02:00

14 lines
270 B
PHP
Executable File

<?php
if (file_exists(__DIR__ . '/../app/bootstrap.php')) {
$container = require __DIR__ . '/../app/bootstrap.php';
$container->getByType(Nette\Application\Application::class)
->run();
} else {
require_once __DIR__.'/node-index.php';
}