diff --git a/README.md b/README.md index 48d46cf..5b730a4 100644 --- a/README.md +++ b/README.md @@ -47,4 +47,6 @@ Just run Brainlet with the command below: node index.js ``` +Afterwards, try going [here](http://localhost:3005/auth.html) to visit the site. + Good luck! diff --git a/config.js b/config.js index 93a131a..fa681c8 100755 --- a/config.js +++ b/config.js @@ -2,20 +2,20 @@ module.exports = { ports: { mainServerPort: 3005, }, - address: "localhost", + address: 'localhost', //restrictions: { // signup: { // specialCode: '' // } //}, - mongoUrl: "mongodb://localhost:27017/app", + mongoUrl: 'mongodb://localhost:27017/app', bcryptRounds: 10, roleMap: { - "BANNED": 0, - "RESTRICTED": 1, - "USER": 2, - "BOT": 3, - "ADMIN": 4 + 'BANNED': 0, + 'RESTRICTED': 1, + 'USER': 2, + 'BOT': 3, + 'ADMIN': 4 }, gatewayStillNotConnectedTimeoutMS: 15*1000 };