31 lines
737 B
TOML
31 lines
737 B
TOML
name = "cf-chat"
|
|
main = "src/index.ts"
|
|
compatibility_date = "2025-01-01"
|
|
compatibility_flags = ["nodejs_compat"]
|
|
|
|
[vars]
|
|
SESSION_TTL_SECONDS = "604800"
|
|
ROOM_ACCESS_TTL_SECONDS = "86400"
|
|
DEV_MODE = "false"
|
|
# Resend 邮件配置
|
|
RESEND_FROM_EMAIL = "noreply@zxd.im" # 修改为你的发件人邮箱
|
|
# RESEND_API_KEY 应该使用 secret 设置,运行: npx wrangler secret put RESEND_API_KEY
|
|
|
|
[[d1_databases]]
|
|
binding = "DB"
|
|
database_name = "douban"
|
|
database_id = "dea24df8-6551-473e-9b1e-b2f2e2211090"
|
|
|
|
[[kv_namespaces]]
|
|
binding = "CACHE"
|
|
id = "56ef01a9d92e42688e91a75bc9a7c534"
|
|
|
|
[[r2_buckets]]
|
|
binding = "BUCKET"
|
|
bucket_name = "paimian"
|
|
|
|
[assets]
|
|
directory = "./public"
|
|
binding = "ASSETS"
|
|
not_found_handling = "single-page-application"
|