mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-06-03 22:31:17 +00:00
21aabc879a
* Stop the config being global (in almost all contexts). * make sure unit test has a config * Make failing word list more visible * Only use Healthz from index.ts Not really sure how useful it is anyways?
12 lines
331 B
TypeScript
12 lines
331 B
TypeScript
/**
|
|
* This file is used to launch mjolnir for manual testing, creating a user and management room automatically if it doesn't already exist.
|
|
*/
|
|
|
|
import { makeMjolnir } from "./mjolnirSetupUtils";
|
|
import config from '../../src/config';
|
|
|
|
(async () => {
|
|
let mjolnir = await makeMjolnir(config);
|
|
await mjolnir.start();
|
|
})();
|