mirror of
https://github.com/Mail-0/Zero.git
synced 2026-07-01 08:16:28 +00:00
42 lines
1021 B
JSON
42 lines
1021 B
JSON
{
|
|
"$schema": "../../node_modules/wrangler/config-schema.json",
|
|
"name": "zero-server",
|
|
"compatibility_date": "2025-05-01",
|
|
"compatibility_flags": ["nodejs_compat"],
|
|
"main": "src/main.ts",
|
|
"env": {
|
|
"staging": {
|
|
"observability": {
|
|
"enabled": true,
|
|
},
|
|
"hyperdrive": [
|
|
{
|
|
"binding": "HYPERDRIVE",
|
|
"id": "57834ddb6716440496c8836f6d99bc9a",
|
|
"localConnectionString": "postgresql://postgres:postgres@localhost:5432/zerodotemail",
|
|
},
|
|
],
|
|
"vars": {
|
|
"NODE_ENV": "development",
|
|
"FORCE_GMAIL_CONSENT": "true",
|
|
},
|
|
},
|
|
"production": {
|
|
"observability": {
|
|
"enabled": true,
|
|
},
|
|
"hyperdrive": [
|
|
{
|
|
"binding": "HYPERDRIVE",
|
|
"id": "",
|
|
"localConnectionString": "postgresql://postgres:postgres@localhost:5432/zerodotemail",
|
|
},
|
|
],
|
|
"vars": {
|
|
"NODE_ENV": "production",
|
|
"FORCE_GMAIL_CONSENT": "true",
|
|
},
|
|
},
|
|
},
|
|
}
|