# Backend Environment Variables # Copy this file to .env and adjust values for local development # Whether to remove images when starting the server (cleanup) REMOVE_IMAGES=false # Node.js environment (development, production, test) NODE_ENV=development # Port for the backend server PORT=5000 # Admin API Authentication # Generate a secure random string for production! # Example: openssl rand -hex 32 ADMIN_API_KEY=your-secret-admin-key-change-me-in-production # Database settings (if needed in future) # DB_HOST=localhost # DB_PORT=3306