11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
|
const rabbitMQ = 'amqp://localhost'
|
||
|
const mongoURL = "mongodb://localhost:27017/users"
|
||
|
const mongoUser = ''
|
||
|
const mongoPassword = ''
|
||
|
|
||
|
module.exports = {
|
||
|
rabbitMQ,
|
||
|
mongoURL,
|
||
|
mongoUser,
|
||
|
mongoPassword
|
||
|
}
|