-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
54 lines (54 loc) · 1.17 KB
/
wrangler.jsonc
File metadata and controls
54 lines (54 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "request-bot",
"main": "./src/workers/app/index.ts",
"compatibility_date": "2026-03-12",
"compatibility_flags": ["nodejs_compat"],
"assets": {
"directory": ".output/public"
},
"d1_databases": [
{
"binding": "DB",
"database_name": "request_bot",
"database_id": "replace-with-d1-database-id",
"migrations_dir": "drizzle"
}
],
"kv_namespaces": [
{
"binding": "SESSION_KV",
"id": "replace-with-kv-namespace-id"
}
],
"queues": {
"producers": [
{
"binding": "TWITCH_REPLY_QUEUE",
"queue": "twitch-reply-queue"
}
]
},
"services": [
{
"binding": "BACKEND_SERVICE",
"service": "request-bot-backend"
}
],
"version_metadata": {
"binding": "CF_VERSION_METADATA"
},
"vars": {
"APP_URL": "http://localhost:9000",
"SENTRY_ENVIRONMENT": "development",
"TWITCH_BOT_USERNAME": "requestbot",
"TWITCH_SCOPES": "openid user:read:moderated_channels channel:bot"
},
"observability": {
"enabled": true,
"logs": {
"enabled": true,
"invocation_logs": true
}
}
}