-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
67 lines (56 loc) · 2.56 KB
/
Copy pathenv.example
File metadata and controls
67 lines (56 loc) · 2.56 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# =============================================================================
# 域名管理工具 - 环境变量配置模板
# Domain Management Tool - Environment Variables Template
# =============================================================================
# -----------------------------------------------------------------------------
# 🔐 应用密码 | Application Password (必填 Required)
# -----------------------------------------------------------------------------
# 登录密码,用于保护应用访问
# Login password to protect application access
ACCESS_PASSWORD=your_password_here
# -----------------------------------------------------------------------------
# 🔍 WHOIS API 配置 | WHOIS API Configuration (必填 Required)
# -----------------------------------------------------------------------------
# apihz.cn WHOIS API 凭证 - 使用 whoisall 接口
# 注册地址: https://www.apihz.cn/?shareid=10008890
# 文档地址: https://apihz.cn/api/wangzhanwhoisall.html
# 支持全球1000+域名后缀(.com/.net/.org/.cn/.io/.dev 等)
# 开发者 ID (在用户中心查看)
# Developer ID (check in user center)
WHOIS_API_ID=your_api_id_here
# 开发者 KEY (在用户中心查看)
# Developer KEY (check in user center)
WHOIS_API_KEY=your_api_key_here
# -----------------------------------------------------------------------------
# 💾 Vercel KV 数据库 | Vercel KV Database (生产环境自动配置)
# -----------------------------------------------------------------------------
# 这些变量由 Vercel 自动注入,无需手动配置
# These variables are automatically injected by Vercel, no manual configuration needed
# KV_URL=
# KV_REST_API_URL=
# KV_REST_API_TOKEN=
# KV_REST_API_READ_ONLY_TOKEN=
# -----------------------------------------------------------------------------
# 📝 使用说明 | Usage Instructions
# -----------------------------------------------------------------------------
#
# 本地开发 | Local Development:
# 1. 复制此文件并重命名为 .env.local
# Copy this file and rename it to .env.local
#
# 2. 填写上述必填的环境变量
# Fill in the required environment variables above
#
# 3. 重启开发服务器
# Restart development server: npm run dev
#
# Vercel 部署 | Vercel Deployment:
# 1. 在 Vercel 项目设置中添加环境变量
# Add environment variables in Vercel project settings
#
# 2. Settings → Environment Variables → Add
#
# 3. 重新部署应用
# Redeploy the application
#
# -----------------------------------------------------------------------------