Load db from env var

This commit is contained in:
2022-11-30 22:38:55 +00:00
parent e1f5f81338
commit 1f06ae0301

View File

@@ -13,8 +13,9 @@ let commandHandlers = new Map();
const bot = new Discord.Client(); const bot = new Discord.Client();
async function initDB() { async function initDB() {
console.log(__dirname);
api.db = await open({ api.db = await open({
filename: 'database/tardis.db', filename: process.env["DB_FILE"],
driver: sqlite3.Database driver: sqlite3.Database
}); });
} }