30 lines
885 B
JavaScript
30 lines
885 B
JavaScript
|
|
module.exports = {
|
||
|
|
google:{
|
||
|
|
clientID: '254253177337-hir9kqg3ovtr104pdu13ohtic8rsuurn.apps.googleusercontent.com',
|
||
|
|
clientSecret:'6j8jf2hdRHN6_QokDEAs1O7J',
|
||
|
|
// redirectURL:'https://nerolackansai.co.in/login/google/redirect',
|
||
|
|
redirectURL:'http://localhost:3000/login/google/redirect',
|
||
|
|
},
|
||
|
|
dbconfigs:{
|
||
|
|
adminsCollection:"admins",
|
||
|
|
vendorsCollection:"vendors",
|
||
|
|
customerLikes:"customerLikes",
|
||
|
|
},
|
||
|
|
session:{
|
||
|
|
cookieKey:"dgfjhdsgfjdsgjhghjsdf"
|
||
|
|
},
|
||
|
|
emailer:{
|
||
|
|
user: 'support@ensoimmersive.com',
|
||
|
|
pass: 'Teamens0',
|
||
|
|
},
|
||
|
|
admin:{
|
||
|
|
name:'NerolacAdmin',
|
||
|
|
password:'abcd@1234',
|
||
|
|
},
|
||
|
|
twilio:{
|
||
|
|
accountSid:'AC566d5a438d076678df24a050c9283105',
|
||
|
|
//authToken :'cd1df612b5e38b92ba330d49e3a48bfc',
|
||
|
|
authToken :'5e0b1ced7a6de98f9d49056357ca1aae'
|
||
|
|
}
|
||
|
|
};
|