# Application APP_ENV=development DEBUG=true SECRET_KEY=your-secret-key-change-in-production # Database # Update with your actual database server hostname/IP and credentials DATABASE_URL=postgresql+asyncpg://paperdynasty:your-password@10.10.0.42:5432/paperdynasty_dev # Discord OAuth DISCORD_CLIENT_ID=your-discord-client-id DISCORD_CLIENT_SECRET=your-discord-client-secret DISCORD_REDIRECT_URI=http://localhost:3000/auth/callback # League APIs SBA_API_URL=https://sba-api.example.com SBA_API_KEY=your-sba-api-key PD_API_URL=https://pd-api.example.com PD_API_KEY=your-pd-api-key # CORS (must be JSON array format) CORS_ORIGINS=["http://localhost:3000", "http://localhost:3001"] # Redis (optional - for caching) # REDIS_URL=redis://localhost:6379