-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
51 lines (50 loc) · 1.18 KB
/
wrangler.jsonc
File metadata and controls
51 lines (50 loc) · 1.18 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
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "release-worker",
"main": "src/index.ts",
"compatibility_flags": ["nodejs_compat"],
"compatibility_date": "2025-04-28",
"observability": {
"enabled": true,
},
"d1_databases": [
{
"binding": "ZIGTOOLS_DB",
"database_name": "staging-db-backend",
"database_id": "6c000765-1ae8-41c6-adfc-ceb068dba105",
},
],
"r2_buckets": [
{
"binding": "ZIGTOOLS_BUILDS",
"bucket_name": "zigtools-builds",
},
],
"vars": {
"R2_PUBLIC_URL": "https://builds.zigtools.org",
},
"env": {
"production": {
"d1_databases": [
{
"binding": "ZIGTOOLS_DB",
"database_name": "production-db-backend",
"database_id": "86dcfef4-8abd-4ff6-97a8-04c231ea2e6c",
},
],
"r2_buckets": [
{
"binding": "ZIGTOOLS_BUILDS",
"bucket_name": "zigtools-builds",
},
],
"vars": {
"R2_PUBLIC_URL": "https://builds.zigtools.org",
},
},
},
}