add auth-service not verified with Dockerfile
This commit is contained in:
parent
3a7389ba68
commit
8cf6520224
12 changed files with 304 additions and 0 deletions
15
backend/service-authentication/config.js
Normal file
15
backend/service-authentication/config.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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;
|
||||
|
||||
|
||||
|
||||
Reference in a new issue