sbuhacks/auth/config.sample.js

11 lines
215 B
JavaScript
Raw Normal View History

2022-09-24 17:06:11 -04:00
const rabbitMQ = 'amqp://localhost'
const mongoURL = "mongodb://localhost:27017/users"
const mongoUser = ''
const mongoPassword = ''
module.exports = {
rabbitMQ,
mongoURL,
mongoUser,
mongoPassword
}