A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/feed-generator 49 lines 1.6 kB view raw
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": "patient-flower-7e0a", 8 "main": "src/index.ts", 9 "compatibility_date": "2025-01-29", 10 "observability": { 11 "enabled": true 12 }, 13 "r2_buckets": [ 14 { 15 "binding": "ROCKSKY_BUCKET", 16 "bucket_name": "rocksky" 17 } 18 ] 19 /** 20 * Smart Placement 21 * Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement 22 */ 23 // "placement": { "mode": "smart" }, 24 /** 25 * Bindings 26 * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including 27 * databases, object storage, AI inference, real-time communication and more. 28 * https://developers.cloudflare.com/workers/runtime-apis/bindings/ 29 */ 30 /** 31 * Environment Variables 32 * https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables 33 */ 34 // "vars": { "MY_VARIABLE": "production_value" }, 35 /** 36 * Note: Use secrets to store sensitive data. 37 * https://developers.cloudflare.com/workers/configuration/secrets/ 38 */ 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}