This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
chatless/backend/service-authentication/config.js
2021-06-06 11:40:31 +02:00

16 lines
386 B
JavaScript

const config = {
// paramètres de connexion à la base de données
mongodbDatabase: 'chat',
mongodbHost: 'mongodb://mongodb-authentication:27017/',
// mongodbHost: 'mongodb://127.0.0.1:27017/',
charset: 'utf8',
mongodbLogin: '',
mongodbPassword: '',
// les noms des tables
mongodbUtilisateurs: 'users'
};
module.exports = config;