- Create frontend-sba/.env.example and frontend-pd/.env.example templates - Fix hardcoded allowedHosts in nuxt.config.ts (now reads NUXT_ALLOWED_HOSTS) - Add NUXT_ALLOWED_HOSTS support to frontend-pd/nuxt.config.ts - Update docker-compose.yml with missing env vars: - FRONTEND_URL, DISCORD_SERVER_REDIRECT_URI - ALLOWED_DISCORD_IDS, WS_HEARTBEAT_INTERVAL, WS_CONNECTION_TIMEOUT - NUXT_ALLOWED_HOSTS for both frontends - Create docker-compose.prod.yml for production overrides - Update root .env.example with new variables - Add "Multi-Domain Deployment" section to README.md with checklist - Update all CLAUDE.md files with environment configuration docs - Remove obsolete 'version' attribute from docker-compose files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
525 B
Plaintext
15 lines
525 B
Plaintext
# PD League Frontend Configuration
|
|
# Copy to .env and update with your values
|
|
|
|
# API Configuration
|
|
NUXT_PUBLIC_API_URL=http://localhost:8000
|
|
NUXT_PUBLIC_WS_URL=http://localhost:8000
|
|
|
|
# Discord OAuth (public client ID only - safe to expose)
|
|
NUXT_PUBLIC_DISCORD_CLIENT_ID=your-discord-client-id
|
|
NUXT_PUBLIC_DISCORD_REDIRECT_URI=http://localhost:3001/auth/callback
|
|
|
|
# Vite Dev Server - Allowed external hosts (comma-separated)
|
|
# Add your domain here for external access during development
|
|
NUXT_ALLOWED_HOSTS=localhost,127.0.0.1
|