-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
102 lines (102 loc) · 2.2 KB
/
Copy pathwrangler.jsonc
File metadata and controls
102 lines (102 loc) · 2.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "codra",
"main": "./src/server/index.ts",
"compatibility_date": "2026-04-16",
"compatibility_flags": [
"nodejs_compat"
],
"routes": [
{
"pattern": "app.codra.devarshi.dev",
"custom_domain": true
}
],
"observability": {
"enabled": true,
"head_sampling_rate": 1,
"logs": {
"enabled": true,
"invocation_logs": true
},
"traces": {
"enabled": true
}
},
"ai": {
"binding": "AI",
"remote": true
},
"hyperdrive": [
{
"binding": "HYPERDRIVE",
"id": "35b282fa80f24e67adfda063c3a839d1"
}
],
"kv_namespaces": [
{
"binding": "APP_KV",
"id": "f5f88c23f1f14342b2ec2c733470921b",
"preview_id": "9f2cdc0fdf8d4c868ae2754f66b839b8"
}
],
"queues": {
"producers": [
{
"binding": "REVIEW_QUEUE",
"queue": "codra-review-jobs"
}
],
"consumers": [
{
"queue": "codra-review-jobs",
"dead_letter_queue": "codra-review-dlq",
"max_batch_size": 1,
"max_batch_timeout": 5,
"max_concurrency": 1,
"visibility_timeout_ms": 900000,
"retry_delay": 60,
"max_retries": 3
}
]
},
"assets": {
"directory": "./dist/client",
"binding": "ASSETS",
"not_found_handling": "single-page-application",
"run_worker_first": [
"/",
"/login",
"/dashboard*",
"/jobs*",
"/repos*",
"/stats*",
"/health*",
"/api/*",
"/auth/*",
"/webhook*",
"/settings*"
]
},
"secrets": {
"required": [
"APP_PRIVATE_KEY",
"GITHUB_APP_ID",
"GITHUB_APP_WEBHOOK_SECRET",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"LLM_CONFIG_ENCRYPTION_KEY",
"CF_API_TOKEN",
"CF_ACCOUNT_ID"
]
},
"vars": {
"APP_URL": "https://app.codra.devarshi.dev",
"AUTH_CALLBACK_URL": "https://app.codra.devarshi.dev/auth/github/callback",
"BOT_USERNAME": "codra-app",
"GITHUB_APP_SLUG": "codra-app-personal",
"DASHBOARD_ALLOWED_USERS": "devarshishimpi",
"ENVIRONMENT": "production",
"CF_DLQ_ID": "ed6f5472cbd146f49ce94d3004eddb0f"
}
}