1234567891011121314151617181920 |
- 'use strict';
- module.exports = () => {
- const config = (exports = {});
- config.cluster = {
- listen: {
- port: 11000,
- },
- };
- config.mongoose = {
- url: 'mongodb://127.0.0.1:27017/htyd',
- options: {
- user: 'admin',
- pass: '111111',
- authSource: 'admin',
- useUnifiedTopology: true,
- useNewUrlParser: true,
- useCreateIndex: true,
- },
- };
- };
|