Merge pull request #549 from lockfale/cloudflare/workers-autoconfig

Add Cloudflare Workers configuration
This commit is contained in:
s0lray
2026-03-23 20:30:00 -04:00
committed by GitHub
4 changed files with 2256 additions and 9 deletions
+7
View File
@@ -18,3 +18,10 @@ bower_components
.Trashes
ehthumbs.db
Thumbs.db
# wrangler files
.wrangler
.dev.vars*
!.dev.vars.example
.env*
!.env.example
+2234 -4
View File
File diff suppressed because it is too large Load Diff
+5 -2
View File
@@ -5,7 +5,9 @@
"main": "public/index.html",
"scripts": {
"postinstall": "copyfiles -f ./node_modules/d3/dist/d3.min.js ./public/js/",
"start": "cd ./public; python3 -m http.server 8000"
"start": "cd ./public; python3 -m http.server 8000",
"deploy": "wrangler deploy",
"preview": "wrangler dev"
},
"repository": {
"type": "git",
@@ -19,6 +21,7 @@
"homepage": "https://github.com/lockfale/ARF#readme",
"devDependencies": {
"copyfiles": "^1.0.0",
"d3": "^7.9.0"
"d3": "^7.9.0",
"wrangler": "^4.76.0"
}
}
+10 -3
View File
@@ -1,7 +1,14 @@
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "osint-framework",
"compatibility_date": "2026-03-23",
"compatibility_date": "2025-09-27",
"observability": {
"enabled": true
},
"assets": {
"directory": "./public"
}
"directory": "public"
},
"compatibility_flags": [
"nodejs_compat"
]
}