This repository has been archived on 2022-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
brainlet/config.js

14 lines
286 B
JavaScript
Raw Normal View History

2020-10-05 20:36:03 +03:00
module.exports = {
ports: {
mainServerPort: 25,
},
address: '188.25.251.46',
mongoUrl: 'mongodb://localhost:27017/app',
bcryptRounds: 10,
roleMap: {
'BANNED': 0,
'RESTRICTED': 1,
'USER': 2,
'ADMIN': 3
}
};