Parent: [74c62d] (diff)

Child: [2ea3af] (diff)

Download this file

db.js    12 lines (8 with data), 233 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
/*made by Miguel Rodrigues @ KBZ miguel.rodrigues@knowledgebiz.pt*/
//DB connection (MySQL)
module.exports = {
host: "mysqlservice",
user: process.env.DBUSER,
password: process.env.DBPASSWORD,
database: process.env.DATABASE
}