aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootstrap/Bootstrap.php14
-rw-r--r--public/index.php12
2 files changed, 13 insertions, 13 deletions
diff --git a/bootstrap/Bootstrap.php b/bootstrap/Bootstrap.php
index 665bdc6..39e6c08 100644
--- a/bootstrap/Bootstrap.php
+++ b/bootstrap/Bootstrap.php
@@ -1,10 +1,16 @@
<?php
-/* composer autoloader */
-require '../vendor/autoload.php';
+/* composer autoload */
+require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/vendor/autoload.php';;
/* source config file */
-$config = include '../AppConfig.php';
+$config = include $_SERVER['DOCUMENT_ROOT'] . '/..' . '/AppConfig.php';;
-/* database query setup */
+/* connect database */
$contact['database'] = new QueryBuilder(Connection::make($config['database']));
+
+/* create new router */
+$router = new Router;
+
+/* create navigator */
+$navigation = new Navigation();
diff --git a/public/index.php b/public/index.php
index 8d94a89..fc39768 100644
--- a/public/index.php
+++ b/public/index.php
@@ -1,14 +1,8 @@
<?php
-/* require core files */
+/* start application */
require '../bootstrap/Bootstrap.php';
-/* create new router */
-$router = new Router;
-
-/* instantiate navigator functions */
-$navigation = new Navigation();
-
-/* direct routes as defined */
-require Router::load('../app/Routes.php')
+/* load routes */
+require Router::load($_SERVER['DOCUMENT_ROOT'] . '/..' . '/app/Routes.php')
->direct(Request::uri(), Request::method());