wrangler.jsonc 884 B

12345678910111213141516171819202122232425262728293031
  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": "cosmoe-bot",
  8. "main": "src/index.ts",
  9. "compatibility_date": "2025-09-27",
  10. "observability": {
  11. "enabled": true
  12. },
  13. "triggers": {
  14. "crons": [
  15. "*/1 * * * *"
  16. ]
  17. },
  18. "vars": {
  19. "BOT_INFO": "{\"id\":8219164862,\"is_bot\":true,\"first_name\":\"CosMoe Bot\",\"username\":\"cosmoe_bot\",\"can_join_groups\":true,\"can_read_all_group_messages\":false,\"supports_inline_queries\":false,\"can_connect_to_business\":false,\"has_main_web_app\":false,\"has_topics_enabled\":false}"
  20. },
  21. "kv_namespaces": [
  22. {
  23. "binding": "COSMOE_CREDENTIALS",
  24. "id": "668dab226bea4de6ab8ef8a5150b926c"
  25. },
  26. {
  27. "binding": "COSMOE_STORAGE",
  28. "id": "a3d8a40e24b0469d8627171d4ce8e51d"
  29. }
  30. ]
  31. }