aboutsummaryrefslogtreecommitdiff
path: root/src/scripts/start.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/start.ts')
-rw-r--r--src/scripts/start.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/scripts/start.ts b/src/scripts/start.ts
new file mode 100644
index 0000000..a9e294e
--- /dev/null
+++ b/src/scripts/start.ts
@@ -0,0 +1,9 @@
+// This script is mainly used during development.
+// Starts Muse without applying database migrations.
+import {startBot} from '../index.js';
+import logBanner from '../utils/log-banner.js';
+
+(async () => {
+ logBanner();
+ await startBot();
+})();