diff --git a/brainlet/secret.js b/brainlet/secret.js index 26e1147..f60976e 100755 --- a/brainlet/secret.js +++ b/brainlet/secret.js @@ -1,10 +1,3 @@ module.exports = { jwtPrivateKey: "KEY", }; - -// Set default values -// You shouldn't need to touch this for configuring this -if (module.exports.jwtPrivateKey === "KEY") { - console.error("config: secret: jwtPrivateKey was not specified in secret.js. A randomly generated private key will be used instead."); - module.exports.jwtPrivateKey = require("crypto").randomBytes(129).toString("base64"); -}