good luck
Some checks failed
CI / Lint (push) Successful in 58s
CI / Test (push) Successful in 8s
CI / Build & Push (push) Failing after 1m33s

This commit is contained in:
2026-03-29 09:20:21 -04:00
parent b10736d43c
commit 3994943757
23 changed files with 579 additions and 161 deletions

8
app/config.py Normal file
View File

@@ -0,0 +1,8 @@
import os
DATA_DIR = os.environ.get("DATA_DIR", "app/data")
PORT = int(os.environ.get("PORT", 2897))
LOG_LEVEL = os.environ.get("LOG_LEVEL", "INFO")
SCOREBOARD_DATA_FILE = os.path.join(DATA_DIR, "scoreboard_data.json")
DB_PATH = os.path.join(DATA_DIR, "nhl_standings.db")