Skip to content
Permalink
5ef4de0b3d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
9 lines (9 sloc) 348 Bytes
//use the value stored in the environment otherwise use the default one
exports.config = {
host: process.env.DB_HOST || 'localhost',
port: process.env.DB_PORT || 3306,
user: process.env.DB_USER || "root",
password: process.env.DB_PASSWORD || "markmark",
database: process.env.DB_DATABASE || "quiz",
connectionLimit: 100
};