From 66dc1feac6dc17a4d79815f59625fbf114c147ba Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Wed, 16 Oct 2024 12:44:59 +0200 Subject: Added the batch scripts and the variable change for the app setting --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app.py') diff --git a/app.py b/app.py index 40b75a1..c6f7af1 100644 --- a/app.py +++ b/app.py @@ -6,7 +6,7 @@ from flask import Flask, render_template, request load_dotenv() app = Flask("Match Up! Backend") -app.config.from_object(getenv("PROD_APP_SETTINGS")) +app.config.from_object(getenv("APP_SETTINGS")) rg = RoundGenerator(courts=CourtList(12), players=PlayerList(getenv("DATABASE"))) -- cgit v1.3.1