2015-08-24 18:09:49 +08:00

23 lines
319 B
JavaScript

'use strict';
/**
* db config
* @type {Object}
*/
module.exports = {
type: 'mysql',
host: '127.0.0.1',
port: '',
name: '',
user: '',
pwd: '',
prefix: 'think_',
encoding: 'utf8',
nums_per_page: 10,
log_sql: true,
log_connect: true,
cache: {
on: true,
type: '',
timeout: 3600
}
};