Make default configuration work v2
This commit is contained in:
parent
869c20e035
commit
09931ff955
2 changed files with 11 additions and 1 deletions
|
@ -47,4 +47,6 @@ Just run Brainlet with the command below:
|
||||||
node index.js
|
node index.js
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Afterwards, try going [here](http://localhost:3005/auth.html) to visit the site.
|
||||||
|
|
||||||
Good luck!
|
Good luck!
|
||||||
|
|
10
config.js
10
config.js
|
@ -8,7 +8,6 @@ module.exports = {
|
||||||
// specialCode: ''
|
// specialCode: ''
|
||||||
// }
|
// }
|
||||||
//},
|
//},
|
||||||
corsAllowList: [ 'localhost' ],
|
|
||||||
mongoUrl: 'mongodb://localhost:27017/app',
|
mongoUrl: 'mongodb://localhost:27017/app',
|
||||||
bcryptRounds: 10,
|
bcryptRounds: 10,
|
||||||
roleMap: {
|
roleMap: {
|
||||||
|
@ -20,3 +19,12 @@ module.exports = {
|
||||||
},
|
},
|
||||||
gatewayStillNotConnectedTimeoutMS: 15*1000
|
gatewayStillNotConnectedTimeoutMS: 15*1000
|
||||||
};
|
};
|
||||||
|
module.exports.corsAllowList = [
|
||||||
|
// Allow the normal web interface
|
||||||
|
`http://${module.exports.address}:${module.exports.ports.mainServerPort}`,
|
||||||
|
`https://${module.exports.address}:${module.exports.ports.mainServerPort}`,
|
||||||
|
|
||||||
|
// Allow brainet-react
|
||||||
|
`http://${module.exports.address}:3000`,
|
||||||
|
`https://${module.exports.address}:3000`
|
||||||
|
];
|
||||||
|
|
Reference in a new issue