From 6dad94019faf84c226fae3bb76bccfc8973d377a Mon Sep 17 00:00:00 2001 From: Braeden57 Date: Sun, 4 Apr 2021 22:19:42 -0700 Subject: [PATCH] Cleared default password --- config/encrypt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/encrypt.js b/config/encrypt.js index 27ef8b8..a211136 100644 --- a/config/encrypt.js +++ b/config/encrypt.js @@ -2,7 +2,7 @@ const bcrypt = require('bcryptjs'); // Set `password` as the password you will use // Then Run this script and copy the output as it is your encrypted password -let password = "APPLEZ57"; +let password = ""; // Encrypts password and returns encrypted password bcrypt.genSalt(10, (err, salt) => {