| 12345678910111213 |
- module.exports = {
- type: 'development',
- cookie: {
- path: '/',
- httpOnly: true,
- secure: false,
- maxAge: 1000 * 3600 * 24 * 30, // 30 days.
- },
- sessionName: 'test_sid',
- mongodbUrl: 'mongodb://coloring:coloring123.@localhost:62701/artsite?authSource=admin',
- host: 'http://localhost:3000',
- resHost: 'http://color.jccytech.cn'
- }
|