sbuhacks/auth/config.sample.js

13 lines
253 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 = ''
2022-09-24 20:23:26 -04:00
const JWT_SECRET = ''
2022-09-24 17:06:11 -04:00
module.exports = {
rabbitMQ,
mongoURL,
mongoUser,
2022-09-24 20:23:26 -04:00
mongoPassword,
JWT_SECRET
2022-09-24 17:06:11 -04:00
}