- Rename app from FantasyCron to GameTime across all templates and code - Update league color palette to 6 visually distinct colors (navy, gold, purple, pink, turquoise, plum) - Add subtle league footer to game cards showing which leagues have players with player counts - Bump version to 1.0.0 - Update Docker compose service name to match rebrand 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
439 B
Python
16 lines
439 B
Python
import os
|
|
|
|
class Config:
|
|
# App version
|
|
VERSION = '1.0.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'
|
|
]
|