mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
17 lines
537 B
TypeScript
17 lines
537 B
TypeScript
import { LogService } from "matrix-js-snippets";
|
|
import config from "./config";
|
|
import { DimensionStore } from "./db/DimensionStore";
|
|
import Webserver from "./api/Webserver";
|
|
import { CURRENT_VERSION } from "./version";
|
|
|
|
LogService.configure(config.logging);
|
|
LogService.info("index", "Starting dimension " + CURRENT_VERSION);
|
|
|
|
async function startup() {
|
|
await DimensionStore.updateSchema();
|
|
|
|
const webserver = new Webserver();
|
|
await webserver.start();
|
|
}
|
|
|
|
startup().then(() => LogService.info("index", "Dimension is ready!")); |