development.js 350 B

12345678910111213
  1. module.exports = {
  2. type: 'development',
  3. cookie: {
  4. path: '/',
  5. httpOnly: true,
  6. secure: false,
  7. maxAge: 1000 * 3600 * 24 * 30, // 30 days.
  8. },
  9. sessionName: 'test_sid',
  10. mongodbUrl: 'mongodb://coloring:coloring123.@localhost:62701/artsite?authSource=admin',
  11. host: 'http://localhost:6889',
  12. resHost: 'http://color.jccytech.cn'
  13. }