Refactor codebase

This commit is contained in:
Peter Stockings
2026-02-24 21:23:14 +11:00
parent f3abb4781b
commit 56168a182b
11 changed files with 191 additions and 127 deletions

View File

@@ -1,8 +1,12 @@
import os
from datetime import timezone, timedelta
from dotenv import load_dotenv
load_dotenv()
# Application-wide timezone for display formatting
SYDNEY_TZ = timezone(timedelta(hours=11))
class Config:
DATABASE_URL = os.environ.get("DATABASE_URL")