15 lines
560 B
JavaScript
15 lines
560 B
JavaScript
const devUri = "mongodb://localhost:27017/worldshine";
|
|
const localUri = "mongodb+srv://new-user-test:Testing123@cluster0.qkzim.mongodb.net/leapbase?retryWrites=true&w=majority";
|
|
module.exports = {
|
|
baseUrl: "mongodb://localhost:27017/",
|
|
fileUrl: "https://worldshine.mayo.llc/files/",
|
|
database: "worldshine",
|
|
url: devUri,
|
|
|
|
// on local enable this
|
|
// url: localUri,
|
|
// baseUrl: "mongodb+srv://new-user-test:Testing123@cluster0.qkzim.mongodb.net/",
|
|
// database: "leapbase",
|
|
// fileUrl: "http://localhost:8080/files/",
|
|
// imgBucket: "photos",
|
|
}; |