| 12345678910111213141516171819202122232425262728293031 |
- /**
- * For more details on how to configure Wrangler, refer to:
- * https://developers.cloudflare.com/workers/wrangler/configuration/
- */
- {
- "$schema": "node_modules/wrangler/config-schema.json",
- "name": "cosmoe-bot",
- "main": "src/index.ts",
- "compatibility_date": "2025-09-27",
- "observability": {
- "enabled": true
- },
- "triggers": {
- "crons": [
- "*/1 * * * *"
- ]
- },
- "vars": {
- "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}"
- },
- "kv_namespaces": [
- {
- "binding": "COSMOE_CREDENTIALS",
- "id": "668dab226bea4de6ab8ef8a5150b926c"
- },
- {
- "binding": "COSMOE_STORAGE",
- "id": "a3d8a40e24b0469d8627171d4ce8e51d"
- }
- ]
- }
|