Frontend UX improvements: - Single-click Discord OAuth from home page (no intermediate /auth page) - Auto-redirect authenticated users from home to /games - Fixed Nuxt layout system - app.vue now wraps NuxtPage with NuxtLayout - Games page now has proper card container with shadow/border styling - Layout header includes working logout with API cookie clearing Games list enhancements: - Display team names (lname) instead of just team IDs - Show current score for each team - Show inning indicator (Top/Bot X) for active games - Responsive header with wrapped buttons on mobile Backend improvements: - Added team caching to SbaApiClient (1-hour TTL) - Enhanced GameListItem with team names, scores, inning data - Games endpoint now enriches response with SBA API team data Docker optimizations: - Optimized Dockerfile using --chown flag on COPY (faster than chown -R) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
795 B
Plaintext
25 lines
795 B
Plaintext
# Application
|
|
APP_ENV=development
|
|
DEBUG=true
|
|
SECRET_KEY=5yIKYt_x20Kk-9PrQVfRzDGc-RFT06vTgIGAz13I8pU
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql+asyncpg://paperdynasty:Snugly9-Gem-Configure@10.10.0.42:5432/paperdynasty_dev
|
|
|
|
# Discord OAuth
|
|
DISCORD_CLIENT_ID=1441192438055178420
|
|
DISCORD_CLIENT_SECRET=oj1OzUo4Qksph6mq57zb-qDiMxtb1n48
|
|
DISCORD_REDIRECT_URI=http://localhost:3000/auth/callback
|
|
DISCORD_SERVER_REDIRECT_URI=http://localhost:8000/api/auth/discord/callback/server
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
# League APIs
|
|
SBA_API_URL=https://api.sba.manticorum.com
|
|
SBA_API_KEY=Tp3aO3jhYve5NJF1IqOmJTmk
|
|
PD_API_URL=https://pd-api.example.com
|
|
PD_API_KEY=placeholder-pd-api-key
|
|
|
|
# CORS
|
|
CORS_ORIGINS=["http://localhost:3000","http://localhost:3001"]
|
|
ALLOWED_DISCORD_IDS=258104532423147520,139926308644847616
|