A decentralized music tracking and discovery platform built on AT Protocol 馃幍
listenbrainz
spotify
atproto
lastfm
musicbrainz
scrobbling
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": "rocksky-auth",
8 "main": "src/index.ts",
9 "compatibility_date": "2025-01-24",
10 "observability": {
11 "enabled": true
12 },
13 "node_compat": true
14 /**
15 * Smart Placement
16 * Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
17 */
18 // "placement": { "mode": "smart" },
19
20 /**
21 * Bindings
22 * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
23 * databases, object storage, AI inference, real-time communication and more.
24 * https://developers.cloudflare.com/workers/runtime-apis/bindings/
25 */
26
27 /**
28 * Environment Variables
29 * https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
30 */
31 // "vars": { "MY_VARIABLE": "production_value" },
32 /**
33 * Note: Use secrets to store sensitive data.
34 * https://developers.cloudflare.com/workers/configuration/secrets/
35 */
36
37 /**
38 * Static Assets
39 * https://developers.cloudflare.com/workers/static-assets/binding/
40 */
41 // "assets": { "directory": "./public/", "binding": "ASSETS" },
42
43 /**
44 * Service Bindings (communicate between multiple Workers)
45 * https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
46 */
47 // "services": [{ "binding": "MY_SERVICE", "service": "my-service" }]
48}