# 应用配置 APP_NAME=Tax Data Center APP_VERSION=1.0.0 DEBUG=true LOG_LEVEL=INFO # 数据库配置 DATABASE_URL=postgresql://hellotax:hellotax@localhost:5435/hellotax DATABASE_SCHEMA=data_center # Redis 配置 REDIS_URL=redis://localhost:6379/0 # Celery 配置 CELERY_BROKER_URL=redis://localhost:6379/0 CELERY_RESULT_BACKEND=redis://localhost:6379/0 CELERY_TASK_QUEUE=data_center_queue # base_platform API 配置 BASE_PLATFORM_URL=http://localhost:8000 BASE_PLATFORM_API_KEY=your-api-key-here # 数据采集配置 CRAWLER_DELAY_MIN=1 CRAWLER_DELAY_MAX=5 CRAWLER_MAX_CONCURRENT=5 CRAWLER_REQUEST_TIMEOUT=30 CRAWLER_MAX_RETRIES=3 # MinIO 存储路径前缀 MINIO_BUCKET=knowledge-documents MINIO_PREFIX=tax-data-center # 代理配置(可选) # HTTP_PROXY=http://proxy.example.com:8080 # HTTPS_PROXY=http://proxy.example.com:8080