e59925f8f1
- Update all three READMEs with binary-pair install instructions - Update INSTALL.md for platform archive + binary pair language - Regenerate facts.generated.ts for v0.8.46 (14 crates, 70 tools) - Rename CF worker project to codewhale-web, add codewhale.net routes - Add web/redirect worker for deepseek-tui.com → codewhale.net
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "codewhale-web",
|
|
"main": "worker.ts",
|
|
"compatibility_date": "2025-04-01",
|
|
"compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"],
|
|
"assets": {
|
|
"directory": ".open-next/assets",
|
|
"binding": "ASSETS"
|
|
},
|
|
"observability": { "enabled": true },
|
|
"routes": [
|
|
{ "pattern": "codewhale.net", "custom_domain": true },
|
|
{ "pattern": "www.codewhale.net", "custom_domain": true }
|
|
],
|
|
"kv_namespaces": [
|
|
{
|
|
"binding": "CURATED_KV",
|
|
"id": "abaa6a753c9d45bfa5c0afaf26dc67b3"
|
|
},
|
|
{
|
|
"binding": "NEXT_INC_CACHE_KV",
|
|
"id": "a2e6f324db9b4b03bbc940a4ba246985"
|
|
}
|
|
],
|
|
"vars": {
|
|
"GITHUB_REPO": "Hmbown/CodeWhale",
|
|
"DEEPSEEK_MODEL": "deepseek-v4-flash",
|
|
"DEEPSEEK_BASE_URL": "https://gateway.ai.cloudflare.com/v1/cf50f793171d7cb3b2ce23368b69cdcb/codewhale-web/deepseek"
|
|
},
|
|
"triggers": {
|
|
"crons": [
|
|
"0 */6 * * *",
|
|
"*/30 * * * *",
|
|
"0 0 * * *",
|
|
"0 9 * * 1"
|
|
]
|
|
},
|
|
"build": {
|
|
"command": "npm run build && npx opennextjs-cloudflare build"
|
|
}
|
|
}
|