This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/include/cli_startup.php

12 lines
204 B
PHP

<?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'));
}