init create cli, added node and partially cloudflare

This commit is contained in:
dswbx
2025-02-13 08:51:48 +01:00
parent d84731d89e
commit 8e72b5b615
15 changed files with 544 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"db": "turso dev --db-file test.db",
"db": "turso dev",
"dev": "wrangler dev",
"start": "wrangler dev",
"test": "vitest",

View File

@@ -0,0 +1,28 @@
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "bknd-cf-worker-example",
"main": "src/index.ts",
"compatibility_date": "2025-02-04",
"compatibility_flags": ["nodejs_compat"],
"workers_dev": true,
"minify": true,
"assets": {
"directory": "../../app/dist/static"
},
"observability": {
"enabled": true
},
"d1_databases": [
{
"binding": "DB",
"database_name": "bknd-cf-example",
"database_id": "7ad67953-2bbf-47fc-8696-f4517dbfe674"
}
],
"r2_buckets": [
{
"binding": "BUCKET",
"bucket_name": "bknd-cf-example"
}
]
}