streams/include/cli_startup.php

12 lines
191 B
PHP
Raw Normal View History

2019-05-15 05:16:49 +00:00
<?php
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
}