12 lines
268 B
PHP
12 lines
268 B
PHP
|
|
<?php
|
||
|
|
@session_start();
|
||
|
|
require $_SERVER['DOCUMENT_ROOT'] . '/vendor/autoload.php';
|
||
|
|
@require $_SERVER['DOCUMENT_ROOT'] . '/config.php';
|
||
|
|
|
||
|
|
define('VIEWS_PATH', __DIR__);
|
||
|
|
|
||
|
|
$bootstrap = new Bootstrap();
|
||
|
|
$bootstrap->setDefaultPath(__DIR__);
|
||
|
|
$bootstrap->init();
|
||
|
|
|