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-05-28 01:01:00 +02:00

15 lines
319 B
JavaScript

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