diff --git a/.gitignore b/.gitignore index 9584fd1..0749803 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,8 @@ things-that-work-cloudflare.zip # OS .DS_Store Thumbs.db + +.dev.vars* +!.dev.vars.example +.env* +!.env.example diff --git a/wrangler.jsonc b/wrangler.jsonc new file mode 100644 index 0000000..9e4d567 --- /dev/null +++ b/wrangler.jsonc @@ -0,0 +1,14 @@ +{ + "$schema": "node_modules/wrangler/config-schema.json", + "name": "things-that-work", + "compatibility_date": "2026-06-28", + "observability": { + "enabled": true + }, + "assets": { + "directory": "deploy" + }, + "compatibility_flags": [ + "nodejs_compat" + ] +}