mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
15 lines
231 B
PHP
15 lines
231 B
PHP
<?php /** @file */
|
|
|
|
require_once('boot.php');
|
|
|
|
use Zotlabs\Lib\Config;
|
|
|
|
// Everything we need to boot standalone 'background' processes
|
|
|
|
function cli_startup() {
|
|
|
|
sys_boot();
|
|
App::set_baseurl(Config::Get('system','baseurl'));
|
|
|
|
}
|