proxitok/index.php

18 lines
363 B
PHP
Raw Normal View History

2022-01-01 19:14:57 +00:00
<?php
require __DIR__ . "/vendor/autoload.php";
2022-01-01 19:14:57 +00:00
2022-05-22 09:48:06 +00:00
$dotenv = new josegonzalez\Dotenv\Loader(__DIR__ . '/.env');
2022-05-22 10:12:37 +00:00
$dotenv->raiseExceptions(false);
2022-05-22 10:31:49 +00:00
$result = $dotenv->parse();
if ($result !== false) {
$dotenv->toEnv();
}
2022-01-01 19:14:57 +00:00
2022-01-28 14:54:09 +00:00
// ROUTER
$router = new Bramus\Router\Router();
2022-01-30 23:02:52 +00:00
$router->setNamespace('\App\Controllers');
require __DIR__ . '/routes.php';
2022-01-30 23:02:52 +00:00
2022-01-28 14:54:09 +00:00
$router->run();