blob: d14076a4f6aa8c200ebab747b580b655e5aeb8ed (
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', '/web/sites/');
define('CONFIG_ROOT', '/web/etc/nginx/');
new App\Script\Console;
|