aboutsummaryrefslogtreecommitdiff
path: root/src/scripts/start.ts
blob: a9e294e92116f8c06d6b4ab200be53782ea72d06 (plain)
1
2
3
4
5
6
7
8
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();
})();