Files
helsinki/Pt12/part12-containers-applications/todo-app/todo-backend/util/config.js
T
2024-09-30 15:32:50 +03:00

7 lines
244 B
JavaScript
Executable File

const MONGO_URL = process.env.MONGO_URL || undefined
const REDIS_URL = process.env.REDIS_URL || undefined
module.exports = {
MONGO_URL,//: 'mongodb://the_username:the_password@localhost:3456/the_database',
REDIS_URL//: '//localhost:6378'
}