blob: 83d8c5abbcde199699877feb6a66139b527a816a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
|