First Commit
This commit is contained in:
parent
41aa025490
commit
4dfd8cd516
41 changed files with 15479 additions and 2 deletions
13
backend/config.js
Normal file
13
backend/config.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
const config = {
|
||||
// paramètres de connexion à la base de données
|
||||
mongodbDatabase: 'polynotfound',
|
||||
mongodbHost: 'mongodb://mongodb:27017/',
|
||||
// mongodbHost: 'mongodb://127.0.0.1:27017/',
|
||||
charset: 'utf8',
|
||||
mongodbLogin: '',
|
||||
mongodbPassword: '',
|
||||
|
||||
// les noms des tables
|
||||
mongodbUtilisateurs: 'users'
|
||||
};
|
||||
module.exports = config;
|
||||
Reference in a new issue