-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathwrangler.toml.example
More file actions
99 lines (83 loc) · 3.97 KB
/
wrangler.toml.example
File metadata and controls
99 lines (83 loc) · 3.97 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#:schema node_modules/wrangler/config-schema.json
name = "auth-inbox"
# Your Cloudflare Worker Name
# 你的 Cloudflare Worker 名称
main = "src/index.ts"
compatibility_date = "2024-10-04"
compatibility_flags = ["nodejs_compat"]
# If you want to use a custom domain, you need to add routes configuration.
# 如果你想使用自定义域名,你需要添加 routes 配置
#routes = [
# { pattern = "email.xxxxx.com", custom_domain = true },
#]
[assets]
directory = "./web/dist"
binding = "ASSETS"
# Workers Logs
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
[observability]
enabled = true
# Variable bindings. These are arbitrary, plaintext strings (similar to environment variables)
# Docs:
# - https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
# Note: Use secrets to store sensitive data.
# - https://developers.cloudflare.com/workers/configuration/secrets/
[vars]
UseBark = "true"
# UseBark: String
# set to "true" to use bark, set to "false" to disable bark
# 是否使用 bark 推送,设置为 "true" 以启用 bark 推送,设置为 "false" 以禁用 bark 推送
barkUrl = "https://api.day.app" # set to your bark url, default is "https://api.day.app"
# barkUrl: String
# set to your bark url, default is "https://api.day.app"
# 设定你的 bark 推送地址,默认为 "https://api.day.app"
barkTokens = "[token1, token2]"
# barkTokens: String
# set to your bark tokens on your iOS device, download it from https://bark.day.app/, you can use multiple tokens, if you only use one, then set it to "[token1]"
# if you dont use bark push, then no need to change
# 设定你的 bark tokens,从 https://bark.day.app/ 下载iOS APP,你可以使用多个 tokens,如果你只使用一个 token,那么设置为 "[token1]"
# 如果你不使用 bark 推送,那么无需改动
FrontEndAdminID = "admin"
# FrontEndAdminID: String
# your login **Please change it to your own login**
# 你的登录账号 **请更改为你自己的登录账号**
FrontEndAdminPassword = "password"
# FrontEndAdminPassword: String
# your password **Please change it to your own password**
# 你的登录密码 **请更改为你自己的登录密码**
# --- Primary AI provider ---
AI_BASE_URL = "https://generativelanguage.googleapis.com/v1beta/openai"
# Base URL of your AI provider (no trailing slash).
# Examples:
# OpenAI: https://api.openai.com
# Gemini (OAI-compat): https://generativelanguage.googleapis.com/v1beta/openai
# Anthropic: https://api.anthropic.com
# DeepSeek: https://api.deepseek.com
# Groq: https://api.groq.com/openai
AI_API_KEY = "your-api-key"
# API key for the primary provider. Use a Cloudflare Secret for production.
# 主模型的 API Key,生产环境请使用 Cloudflare Secret 存储
AI_API_FORMAT = "openai"
# Request/response format. One of:
# openai — POST /v1/chat/completions (OpenAI, Gemini compat, DeepSeek, Groq, etc.)
# responses — POST /v1/responses (OpenAI Responses API)
# anthropic — POST /v1/messages (Anthropic Claude direct)
# 请求格式,三选一:openai | responses | anthropic
AI_MODEL = "gemini-2.0-flash"
# Model ID to use, e.g. "gpt-4o-mini", "gemini-2.0-flash", "claude-3-5-haiku-20241022"
# 模型 ID
# --- Fallback AI provider (optional — remove all four lines to disable) ---
# AI_FALLBACK_BASE_URL = "https://api.openai.com"
# AI_FALLBACK_API_KEY = "your-fallback-api-key"
# AI_FALLBACK_API_FORMAT = "openai"
# AI_FALLBACK_MODEL = "gpt-4o-mini"
# Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
# Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#d1-databases
[[d1_databases]]
binding = "DB"
database_name = "inbox-d1"
database_id = "********-****-****-****-************"
# database_id: String
# replace with your database id
# 请你替换为你的数据库 ID