diff --git a/.gitignore b/.gitignore index c93cf6e2..e328cb7d 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,9 @@ Thumbs.db # Project specific backups/ /out/ + +# wrangler files +.wrangler +.dev.vars* +!.dev.vars.example +!.env.example diff --git a/wrangler.jsonc b/wrangler.jsonc new file mode 100644 index 00000000..c619ff52 --- /dev/null +++ b/wrangler.jsonc @@ -0,0 +1,14 @@ +{ + "$schema": "node_modules/wrangler/config-schema.json", + "name": "codex-console", + "compatibility_date": "2026-04-10", + "observability": { + "enabled": true + }, + "assets": { + "directory": "templates" + }, + "compatibility_flags": [ + "nodejs_compat" + ] +}