eecs448-project-4/config/database.config.js

39 lines
890 B
JavaScript
Raw Normal View History

2020-11-01 18:50:03 +00:00
const database_config = {
/*
* The name of the database.
*/
name: env('DATABASE_NAME', 'flitter'),
/*
* The hostname of the database server.
* Should be fully-qualified or resolvable.
*/
host: env('DATABASE_HOST', 'localhost'),
/*
* MongoDB port on the database host.
*/
// port: env('DATABASE_PORT', 27017),
2020-11-01 18:50:03 +00:00
port: env('DATABASE_PORT', 27017),
protocol: env('DATABASE_PROTOCOL', 'mongodb'),
connect_flags: env('DATABASE_FLAGS', '?authSource=admin'),
2020-11-01 18:50:03 +00:00
auth: {
/*
* Boolean true if the database connection requires auth.
*/
require: 'true', // env('DATABASE_AUTH', false),
2020-11-01 18:50:03 +00:00
/*
* MongoDB username and password.
*/
username: env('DATABASE_USERNAME', ''),
password: env('DATABASE_PASSWORD', ''),
},
}
module.exports = database_config