This commit is contained in:
Cassio Santos
2020-05-23 17:19:42 -03:00
commit 47f152a145
48 changed files with 19316 additions and 0 deletions

9
backend/util/database.js Normal file
View File

@@ -0,0 +1,9 @@
const Sequelize = require("sequelize");
const sequelize = new Sequelize("econo_whatsbot", "root", "nodecomplete", {
dialect: "mysql",
host: "localhost",
logging: false,
});
module.exports = sequelize;