# Cloudflare API配置
CLOUDFLARE_API_TOKEN=your_cloudflare_api_token_here

# 服务器配置
PORT=3005
NODE_ENV=production

# CORS配置
CORS_ORIGIN=http://localhost:5173

# 获取Cloudflare API Token的步骤：
# 1. 登录 https://dash.cloudflare.com/
# 2. 点击右上角头像 -> "My Profile"
# 3. 选择 "API Tokens" 标签
# 4. 点击 "Create Token"
# 5. 选择 "Custom token" 模板
# 6. 设置权限：
#    - Zone:Zone:Read
#    - Zone:DNS:Edit
# 7. 选择要管理的域名（可选择所有域名）
# 8. 点击 "Continue to summary" -> "Create Token"
# 9. 复制生成的Token并替换上面的 your_cloudflare_api_token_here