# Environment Configuration for KidsAI Explorer # Copy this file to .env and add your API tokens # Docker Bake Configuration for better build performance COMPOSE_BAKE=true # OpenAI API Key (Recommended for best experience) # Get your API key at: https://platform.openai.com/api-keys OPENAI_API_KEY=your_openai_api_key_here # Hugging Face API Token (Optional - improves rate limits for fallback) # Get your free token at: https://huggingface.co/settings/tokens HUGGING_FACE_TOKEN=your_hugging_face_token_here # Optional: If using Prisma with PostgreSQL database # DB_PASSWORD=your_secure_password_here # DATABASE_URL="postgresql://kidsai:${DB_PASSWORD}@database:5432/kidsai?schema=public" # Next.js Configuration NODE_ENV=development PORT=3444