# Tool_OCR - 1Panel Docker Deployment Configuration # Copy this file to .env and fill in your values # ===== Service Ports ===== BACKEND_PORT=8000 FRONTEND_PORT=12010 # ===== Database Configuration ===== MYSQL_HOST=your-mysql-host MYSQL_PORT=3306 MYSQL_USER=your-username MYSQL_PASSWORD=your-password MYSQL_DATABASE=your-database # ===== Security ===== # Generate a random string for production: openssl rand -hex 32 SECRET_KEY=your-secret-key-change-this # ===== Translation API (DIFY) ===== DIFY_BASE_URL=https://your-dify-instance.example.com/v1 DIFY_API_KEY=your-dify-api-key # ===== Logging ===== LOG_LEVEL=INFO