aboutsummaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-16 12:44:59 +0200
committerKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-16 12:44:59 +0200
commit66dc1feac6dc17a4d79815f59625fbf114c147ba (patch)
tree5f37f04a5f1de63c6e43a95962b8c1399e6bf741 /app.py
parentf6f8cb4f1bf643a8d29f917d5c977cb2343f2672 (diff)
Added the batch scripts and the variable change for the app setting
Diffstat (limited to 'app.py')
-rw-r--r--app.py2
1 files changed, 1 insertions, 1 deletions
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")))