Add manual launch script for working with mx-tester

This commit is contained in:
gnuxie 2021-09-27 11:53:29 +01:00
parent ac075fd22e
commit 21d79475e3

View File

@ -0,0 +1,10 @@
/**
* 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";
(async () => {
let mjolnir = await makeMjolnir();
await mjolnir.start()
})();