From dcdc8d248f624b39708debd8c6d1007957f9891c Mon Sep 17 00:00:00 2001 From: John David White <127981157+john-david3@users.noreply.github.com> Date: Wed, 15 Jan 2025 16:01:20 +0000 Subject: [PATCH] Removed the secret key from the code --- core/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/app.py b/core/app.py index 8c74c00..e0420f5 100644 --- a/core/app.py +++ b/core/app.py @@ -4,7 +4,7 @@ from functools import wraps from core.forms import SignupForm, LoginForm app = Flask(__name__, template_folder="../ui/templates/") -app.config["SECRET_KEY"] = "j9573-4952-9029-1034" +app.config["SECRET_KEY"] = "" @app.before_request def logged_in_user(): @@ -61,4 +61,4 @@ def login(): password = form.username.data # Compare with database - return \ No newline at end of file + return