-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc.example
More file actions
77 lines (77 loc) · 2.04 KB
/
wrangler.jsonc.example
File metadata and controls
77 lines (77 loc) · 2.04 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
74
75
76
77
{
"name": "personal-website-v8",
"main": "./dist/_worker.js/index.js",
"compatibility_date": "2025-05-04",
"compatibility_flags": ["nodejs_compat"],
"observability": {
"enabled": true,
},
"placement": {
"mode": "smart",
},
"assets": {
"binding": "ASSETS",
"directory": "./dist",
},
"d1_databases": [
{
"binding": "DB",
"database_name": "<DATABASE_NAME>",
"database_id": "<DATABASE_ID>",
"migrations_dir": "migrations/",
},
],
"vars": {
"ENVIRONMENT": "dev",
},
"env": {
"staging": {
"workers_dev": false,
"routes": [
{
"pattern": "<STAGING_DOMAIN>",
"custom_domain": true,
},
],
"vars": {
"ENVIRONMENT": "staging",
},
"assets": {
"binding": "ASSETS",
"directory": "./dist",
},
"d1_databases": [
{
"binding": "DB",
"database_name": "<STAGING_DATABASE_NAME>",
"database_id": "<STAGING_DATABASE_ID>",
"migrations_dir": "migrations/",
},
],
},
"production": {
"workers_dev": false,
"routes": [
{
"pattern": "<PROD_DOMAIN>",
"custom_domain": true,
},
],
"vars": {
"ENVIRONMENT": "production",
},
"assets": {
"binding": "ASSETS",
"directory": "./dist",
},
"d1_databases": [
{
"binding": "DB",
"database_name": "<PROD_DATABASE_NAME>",
"database_id": "<PROD_DATABASE_ID>",
"migrations_dir": "migrations/",
},
],
},
},
}