mirror of
https://github.com/lockfale/OSINT-Framework.git
synced 2026-08-17 19:35:41 +02:00
The osint_framework_kv namespace ID was truncated to "cdb975e31e" in the initial commit. Updated to the full 32-character ID confirmed by the board from the Cloudflare dashboard. Co-Authored-By: Paperclip <noreply@paperclip.ing>
27 lines
750 B
JSON
27 lines
750 B
JSON
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "osint-framework",
|
|
"main": "src/worker.js",
|
|
"compatibility_date": "2025-09-27",
|
|
"observability": {
|
|
"enabled": true
|
|
},
|
|
"assets": {
|
|
"directory": "public"
|
|
},
|
|
"compatibility_flags": [
|
|
"nodejs_compat"
|
|
],
|
|
"kv_namespaces": [
|
|
{
|
|
// KV namespace for click tracking and tool stats
|
|
// Production namespace ID from Cloudflare dashboard (osint_framework_kv)
|
|
"binding": "CLICK_DATA",
|
|
"id": "cdb975e31e58416ba9476c38897fa61c"
|
|
// For local dev with `wrangler dev`, create a preview namespace:
|
|
// wrangler kv namespace create "osint_framework_kv" --preview
|
|
// then add: "preview_id": "<preview-namespace-id>"
|
|
}
|
|
]
|
|
}
|