This repository was archived by the owner on Aug 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
73 lines (73 loc) · 1.79 KB
/
Copy pathwrangler.jsonc
File metadata and controls
73 lines (73 loc) · 1.79 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
{
"name": "seller-ai-platform",
"main": "worker/index.ts",
"compatibility_date": "2026-07-16",
"compatibility_flags": ["nodejs_compat"],
"vars": {
"EBAY_MARKETPLACE_ID": "EBAY_US",
"EBAY_USE_SANDBOX": "false",
"BILLING_ENFORCEMENT_MODE": "enforce",
// Project ID from the RevenueCat dashboard URL. Required by the v2 API.
"REVENUECAT_PROJECT_ID": "89a32260",
// "v1" | "v2" | "auto". Auto tries v1 then falls back to v2 on 401/403.
"REVENUECAT_API_VERSION": "auto",
"PUBLIC_API_BASE_URL": "https://seller-ai-platform.jonathang132298.workers.dev",
"PUBLIC_WEB_APP_URL": "https://listingos.expo.app"
},
"observability": {
"enabled": true
},
"d1_databases": [
{
"binding": "DB",
"database_name": "seller-ai-db",
"database_id": "f49ab6cf-d6ff-4fd3-8137-4e3fc53119e6",
"migrations_dir": "worker/migrations"
}
],
"kv_namespaces": [
{
"binding": "SESSION_KV",
"id": "8828d3a55aef4548b3fc30d3811e681b"
}
],
"r2_buckets": [
{
"binding": "UPLOADS_BUCKET",
"bucket_name": "seller-ai-uploads"
}
],
"queues": {
"producers": [
{
"binding": "PROCESS_UPLOAD_BATCH_QUEUE",
"queue": "process-upload-batch"
},
{
"binding": "GENERATE_DRAFT_QUEUE",
"queue": "generate-draft"
},
{
"binding": "PUBLISH_LISTING_QUEUE",
"queue": "publish-listing"
}
],
"consumers": [
{
"queue": "process-upload-batch",
"max_batch_size": 10,
"max_batch_timeout": 3
},
{
"queue": "generate-draft",
"max_batch_size": 10,
"max_batch_timeout": 3
},
{
"queue": "publish-listing",
"max_batch_size": 5,
"max_batch_timeout": 3
}
]
}
}