mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
14 lines
273 B
PHP
Executable File
14 lines
273 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
if(!file_exists('include/cli_startup.php')) {
|
|
echo 'Run init_sys_channel from the top level Hubzilla web directory, as util/init_sys_channel' . PHP_EOL;
|
|
exit(1);
|
|
}
|
|
|
|
require_once('include/cli_startup.php');
|
|
|
|
cli_startup();
|
|
|
|
create_sys_channel();
|