-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 1.1 KB
/
Copy path.env.example
File metadata and controls
27 lines (22 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 网站邮箱提取器 - 环境变量配置示例
# 复制此文件为 .env.local 并填入真实的API密钥
# ===========================================
# Firecrawl API 配置
# ===========================================
# 获取方式:访问 https://www.firecrawl.dev/ 注册并获取API密钥
FIRECRAWL_API_KEY=your_firecrawl_api_key_here
# ===========================================
# Cloudflare Turnstile 验证码配置
# ===========================================
# 获取方式:访问 https://dash.cloudflare.com/ -> Turnstile -> 创建站点
# 前端使用的Site Key(公开的,可以在客户端代码中看到)
NEXT_PUBLIC_TURNSTILE_SITE_KEY=your_turnstile_site_key_here
# 后端验证使用的Secret Key(私密的,仅在服务器端使用)
TURNSTILE_SECRET_KEY=your_turnstile_secret_key_here
# ===========================================
# 使用说明
# ===========================================
# 1. 将此文件复制为 .env.local
# 2. 替换所有 "your_*_here" 为真实的API密钥
# 3. 重启开发服务器使配置生效
# 4. 确保 .env.local 不要提交到版本控制系统