service-privateroom
This commit is contained in:
parent
bc6aa6dd28
commit
c00d9ba51d
8 changed files with 264 additions and 0 deletions
15
backend/service-privateroom/config.js
Normal file
15
backend/service-privateroom/config.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
const config = {
|
||||
mongodbDatabase: 'chat',
|
||||
mongodbHost: 'mongodb://127.0.0.1:27021/',
|
||||
// mongodbHost: 'mongodb://127.0.0.1:27018/', //when commit
|
||||
charset: 'utf8',
|
||||
mongodbLogin: '',
|
||||
mongodbPassword: '',
|
||||
|
||||
mongodbPrivatedMessages: 'privatedmessages',
|
||||
mongodbConversations: 'conversations'
|
||||
};
|
||||
module.exports = config;
|
||||
|
||||
|
||||
|
||||
Reference in a new issue