-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
39 lines (39 loc) · 1.52 KB
/
Copy pathwrangler.jsonc
File metadata and controls
39 lines (39 loc) · 1.52 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
{
"$schema": "https://raw.githubusercontent.com/cloudflare/workers-sdk/main/packages/wrangler/config-schema.json",
"name": "smart-portfolio",
"pages_build_output_dir": "./out",
"compatibility_date": "2026-08-27",
"d1_databases": [
{
"binding": "CONTACT_RATE_LIMIT_DB",
"database_name": "smart-portfolio-contact-rate-limit-production",
"database_id": "8ae31be3-092e-4a86-86ed-c0729f27c61c",
"preview_database_id": "contact-rate-limit-local",
"migrations_dir": "migrations"
}
],
"vars": {
"TURNSTILE_ALLOWED_HOSTNAMES": "smart-portfolio-bds.pages.dev,nicolasmgioanni.dev,www.nicolasmgioanni.dev",
"CONTACT_ALLOWED_ORIGINS": "https://smart-portfolio-bds.pages.dev,https://nicolasmgioanni.dev,https://www.nicolasmgioanni.dev",
"CONTACT_FROM_EMAIL": "Nicolas Gioanni <noreply@mail.nicolasmgioanni.dev>",
"CONTACT_REPLY_TO_EMAIL": "ngioanni@uw.edu"
},
"env": {
"preview": {
"d1_databases": [
{
"binding": "CONTACT_RATE_LIMIT_DB",
"database_name": "smart-portfolio-contact-rate-limit-preview",
"database_id": "963d761b-6055-4adb-9ac8-0bd8f14efad4",
"migrations_dir": "migrations"
}
],
"vars": {
"TURNSTILE_ALLOWED_HOSTNAMES": "develop.smart-portfolio-bds.pages.dev",
"CONTACT_ALLOWED_ORIGINS": "https://develop.smart-portfolio-bds.pages.dev",
"CONTACT_FROM_EMAIL": "Nicolas Gioanni <noreply@mail.nicolasmgioanni.dev>",
"CONTACT_REPLY_TO_EMAIL": "ngioanni@uw.edu"
}
}
}
}