15 lines
No EOL
333 B
JavaScript
Executable file
15 lines
No EOL
333 B
JavaScript
Executable file
module.exports = {
|
|
ports: {
|
|
mainServerPort: 3000,
|
|
},
|
|
address: 'localhost',
|
|
mongoUrl: 'mongodb://localhost:27017/app',
|
|
bcryptRounds: 10,
|
|
roleMap: {
|
|
'BANNED': 0,
|
|
'RESTRICTED': 1,
|
|
'USER': 2,
|
|
'ADMIN': 3
|
|
},
|
|
gatewayStillNotConnectedTimeoutMS: 15*1000
|
|
}; |