streams/include/cli_startup.php

13 lines
198 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
2021-12-03 03:01:39 +00:00
function cli_startup()
{
2012-10-23 02:46:18 +00:00
2021-12-03 03:01:39 +00:00
sys_boot();
App::set_baseurl(get_config('system', 'baseurl'));
}