From 2ad5ce929f6d69c9aaca71573744b30e02ab8bed Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 27 Jun 2025 10:10:56 +0200 Subject: Add cloudflare basic impl --- wrangler.jsonc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 wrangler.jsonc (limited to 'wrangler.jsonc') diff --git a/wrangler.jsonc b/wrangler.jsonc new file mode 100644 index 0000000..2c58a61 --- /dev/null +++ b/wrangler.jsonc @@ -0,0 +1,16 @@ +{ + // Cloudflare Workers configuration + "name": "astro-base-cf", + "compatibility_date": "2024-06-27", + "compatibility_flags": ["nodejs_compat"], + + // D1 Database configuration + "d1_databases": [ + { + "binding": "DB", + "database_name": "astro-base-db", + "database_id": "your-database-id-here", + "preview_database_id": "your-preview-database-id-here" + } + ] +} \ No newline at end of file -- cgit v1.3.1