You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rap2-delos/config/config.dev.js

25 lines
399 B
JavaScript

module.exports = {
version: '2.3',
serve: {
port: 8080
},
keys: ['some secret hurr'],
session: {
key: 'rap2:sess'
},
db: {
dialect: 'mysql',
host: 'localhost',
port: '3306',
username: 'root',
password: '', // KeyCenter 配置项密文
database: 'RAP2_DELOS_APP',
pool: {
max: 5,
min: 0,
idle: 10000
},
logging: false
}
}