Fix boot location in index

This commit is contained in:
Sky Johnson 2024-07-17 22:13:07 -05:00
parent 2de9b823ee
commit 61465131ae

View File

@ -4,7 +4,7 @@
// define our server path and bootstrap the request
const SERVER = '../server';
require_once SERVER.'/bootstrap.php';
require_once SERVER.'/bootstrap/Boot.php';
// spin up our app container and the initial route
$app = new App(new Database(DB), new Request(), new Auth());