Skip to content
Snippets Groups Projects
config.js 238 B
/**
 * Project config file.
 */


var config = {
    mysql: {
        host: '127.0.0.1',
        port: '3306',
        database: 'mysql_connector_example',
        user: 'root',
        password: 'root'
    }
}


module.exports = config;