123456789101112131415161718192021222324252627 |
- '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,
- },
- };
- config.appInfo = {
- id: 'wx74f916cbbb2173fa',
- secret: '3cc515d634c854d60ec8b341119ada09',
- store: '1606113941',
- storeKey: 'hongtaiyuedawangluohuliankejighw',
- };
- };
|