Skip to content

Commit

Permalink
What options are we using?
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Sep 29, 2024
1 parent fef9ef9 commit 1e64ba2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export function getDatabaseConnection(options?: DBConnectionOptions) {
const username = options?.username ?? process.env.DB_USERNAME as string;
const password = options?.password ?? process.env.DB_PASSWORD as string;
const host = options?.host ?? process.env.DB_HOSTNAME as string;
console.log(options);
const database = new Sequelize(dbName, username, password, {
host,
dialect: "mysql",
Expand Down

0 comments on commit 1e64ba2

Please sign in to comment.