diff options
Diffstat (limited to 'scripts/test.php')
-rw-r--r-- | scripts/test.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/test.php b/scripts/test.php new file mode 100644 index 0000000..83d8c5a --- /dev/null +++ b/scripts/test.php @@ -0,0 +1,13 @@ +<?php + +ini_set("display_errors", 1); +ini_set("display_startup_errors", 1); +error_reporting(E_ALL); + +// Pull in bootstrap +require(realpath(dirname(__FILE__) . "/../bootstrap.php")); + +// Set up siteroot +define('DIPPER_ROOT', realpath(dirname(__FILE__) . "/../")); + +new App\Script\Console; |