-
Notifications
You must be signed in to change notification settings - Fork 22
/
wrangler.toml.example
70 lines (58 loc) · 2.78 KB
/
wrangler.toml.example
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
#: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 },
#]
# 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**
# 你的登录密码 **请更改为你自己的登录密码**
GoogleAPIKey = "xxxxxxxxxxx"
# GoogleAPIKey: String
# your google AI API, you can have one from https://aistudio.google.com
# 你的谷歌AI API,你可以从 https://aistudio.google.com 获取
# 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