mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
22 lines
290 B
JavaScript
22 lines
290 B
JavaScript
'use strict';
|
|
/**
|
|
* db config
|
|
* @type {Object}
|
|
*/
|
|
export default {
|
|
type: 'mysql',
|
|
adapter: {
|
|
mysql: {
|
|
host: '127.0.0.1',
|
|
port: '',
|
|
database: '',
|
|
user: '',
|
|
password: '',
|
|
prefix: 'think_',
|
|
encoding: 'utf8'
|
|
},
|
|
mongo: {
|
|
|
|
}
|
|
}
|
|
}; |