summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
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")))