mirror of
https://github.com/xodivorce/xeorl.git
synced 2025-12-19 00:02:57 +05:30
9 lines
195 B
PHP
Executable File
9 lines
195 B
PHP
Executable File
<?php
|
|
require 'core/vendor/autoload.php';
|
|
error_reporting(E_ALL);
|
|
ini_set('display_errors', 1);
|
|
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
|
|
$dotenv->load();
|
|
|
|
require 'home.php';
|
|
?>
|