wrangler.jsonc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /**
  2. * For more details on how to configure Wrangler, refer to:
  3. * https://developers.cloudflare.com/workers/wrangler/configuration/
  4. */
  5. {
  6. "$schema": "node_modules/wrangler/config-schema.json",
  7. "name": "notion-exrate-worker",
  8. "main": "src/index.ts",
  9. "compatibility_date": "2026-03-17",
  10. "observability": {
  11. "enabled": true
  12. },
  13. "triggers": {
  14. "crons": [
  15. "* * * * *"
  16. ]
  17. },
  18. "compatibility_flags": [
  19. "nodejs_compat"
  20. ]
  21. /**
  22. * Smart Placement
  23. * https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
  24. */
  25. // "placement": { "mode": "smart" }
  26. /**
  27. * Bindings
  28. * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
  29. * databases, object storage, AI inference, real-time communication and more.
  30. * https://developers.cloudflare.com/workers/runtime-apis/bindings/
  31. */
  32. /**
  33. * Environment Variables
  34. * https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
  35. * Note: Use secrets to store sensitive data.
  36. * https://developers.cloudflare.com/workers/configuration/secrets/
  37. */
  38. // "vars": { "MY_VARIABLE": "production_value" }
  39. /**
  40. * Static Assets
  41. * https://developers.cloudflare.com/workers/static-assets/binding/
  42. */
  43. // "assets": { "directory": "./public/", "binding": "ASSETS" }
  44. /**
  45. * Service Bindings (communicate between multiple Workers)
  46. * https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
  47. */
  48. // "services": [ { "binding": "MY_SERVICE", "service": "my-service" } ]
  49. }