Proof of concept of a kanban style application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
298 B
Raw

const mongodb_user="test";
const mongodb_password="test";
const mongodb_url="mongo";
const mongodb_database="kanban-mongo"
module.exports = {
//mongoURI: 'mongodb://'+mongodb_user+":"+mongodb_password+"@"+mongodb_url+"/"+mongodb_database
mongoURI: 'mongodb://'+mongodb_url+"/"+mongodb_database
}