sbuhacks/auth/config.sample.js
2022-09-24 20:23:26 -04:00

13 lines
253 B
JavaScript

const rabbitMQ = 'amqp://localhost'
const mongoURL = "mongodb://localhost:27017/users"
const mongoUser = ''
const mongoPassword = ''
const JWT_SECRET = ''
module.exports = {
rabbitMQ,
mongoURL,
mongoUser,
mongoPassword,
JWT_SECRET
}