A self hosted livestreaming server.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 
satyr/src/index.ts

17 lines
487 B

import {init as initRTMP} from "./server";
import {init as initDB} from "./database";
import {init as initHTTP} from "./http";
import {init as clean} from "./cleanup";
import {init as initChat} from "./chat";
import { config } from "./config";
async function run() {
await initDB();
await clean(process.argv.indexOf('--skip-migrate') !== -1);
await initHTTP();
await initRTMP();
await initChat();
console.log(`Satyr v${config['satyr']['version']} ready`);
}
run();
export { run };