import os class Config: # App version VERSION = '1.1.0' SECRET_KEY = os.environ.get('SECRET_KEY') or 'dev-secret-key' # API settings SLEEPER_BASE_URL = 'https://api.sleeper.app/v1' ESPN_BASE_URL = 'https://site.api.espn.com/apis/site/v2/sports/football/nfl' # League colors - assigned in order LEAGUE_COLORS = [ '#003594', '#ffa300', '#8a2be2', '#ff69b4', '#40e0d0', '#dda0dd' ]