streams/include/cli_startup.php

12 lines
204 B
PHP
Raw Normal View History

2013-02-26 01:09:40 +00:00
<?php /** @file */
2012-10-23 02:46:18 +00:00
require_once('boot.php');
// Everything we need to boot standalone 'background' processes
function cli_startup() {
sys_boot();
2016-03-31 23:06:03 +00:00
App::set_baseurl(get_config('system','baseurl'));
2012-10-23 02:46:18 +00:00
}