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
284 B
JavaScript
Raw Normal View History

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