-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
24 lines (24 loc) · 985 Bytes
/
Copy pathwrangler.jsonc
File metadata and controls
24 lines (24 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "cloudflare-react-router7-shopify-d1",
"main": "./workers/app.ts",
"compatibility_date": "2025-04-01",
"compatibility_flags": ["nodejs_compat"],
"observability": {
"enabled": true
},
"upload_source_maps": true,
"vars": {
"SHOPIFY_APP_URL": "https://example.com/",
"SCOPES": "write_products",
"SHOPIFY_API_KEY": "your_api_key_here", // Don't use this in production, use secrets in the dashboard https://developers.cloudflare.com/workers/configuration/secrets/#adding-secrets-to-your-project
"SHOPIFY_API_SECRET": "your_api_secret_here" // Don't use this in production, use secrets in the dashboard https://developers.cloudflare.com/workers/configuration/secrets/#adding-secrets-to-your-project
},
"d1_databases": [
{
"binding": "DB",
"database_name": "cloudflare-react-router7-shopify-d1",
"database_id": "fabc1923-52d0-4ea6-a4f5-ecbce7b5081f"
}
]
}