blob: a4c1f629a6b4f7ee89416c09e89d239c0dfd4950 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php /** @file */
require_once('boot.php');
// Everything we need to boot standalone 'background' processes
function cli_startup() {
sys_boot();
App::set_baseurl(get_config('system','baseurl'));
}
|