summaryrefslogtreecommitdiff
path: root/scripts/test.php
blob: f1203ce394d10a52a87d1a53cb630c7214d93139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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__) . "/../"));
define('SITES_ROOT', '/home/phil/sites/');
define('CONFIG_ROOT', '/home/phil/sites/');

new App\Script\Console;