From 3774d5dfd730ab947438ba45dced508602483324 Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Tue, 12 May 2026 18:47:33 +0100 Subject: add red-right-hand community projects --- communities/red-right-hand/website/.gitignore | 2 + communities/red-right-hand/website/README.md | 1 + .../red-right-hand/website/public/index.html | 264 +++++++++++++++++++++ communities/red-right-hand/website/wrangler.jsonc | 23 ++ 4 files changed, 290 insertions(+) create mode 100644 communities/red-right-hand/website/.gitignore create mode 100644 communities/red-right-hand/website/README.md create mode 100644 communities/red-right-hand/website/public/index.html create mode 100644 communities/red-right-hand/website/wrangler.jsonc (limited to 'communities/red-right-hand/website') diff --git a/communities/red-right-hand/website/.gitignore b/communities/red-right-hand/website/.gitignore new file mode 100644 index 0000000..3e4f32c --- /dev/null +++ b/communities/red-right-hand/website/.gitignore @@ -0,0 +1,2 @@ +/.wrangler/ +/node_modules/ \ No newline at end of file diff --git a/communities/red-right-hand/website/README.md b/communities/red-right-hand/website/README.md new file mode 100644 index 0000000..e57c29d --- /dev/null +++ b/communities/red-right-hand/website/README.md @@ -0,0 +1 @@ +# Red Right Hand Website diff --git a/communities/red-right-hand/website/public/index.html b/communities/red-right-hand/website/public/index.html new file mode 100644 index 0000000..637bfc0 --- /dev/null +++ b/communities/red-right-hand/website/public/index.html @@ -0,0 +1,264 @@ + + + + + + + + + + + + diff --git a/communities/red-right-hand/website/wrangler.jsonc b/communities/red-right-hand/website/wrangler.jsonc new file mode 100644 index 0000000..8cf1f5b --- /dev/null +++ b/communities/red-right-hand/website/wrangler.jsonc @@ -0,0 +1,23 @@ +{ + "$schema": "node_modules/wrangler/config-schema.json", + // "compatibility_flags": ["nodejs_compat"], + "compatibility_date": "2026-03-29", + "account_id": "424d9dabd39849818d9e22366a20e4d6", + "name": "red-right-hand-website", + // "main": "./server/index.js", + "assets": { + "directory": "./public/", + "not_found_handling": "single-page-application", + // "binding": "ASSETS", + // "run_worker_first": true, + }, + "observability": { + "enabled": true, + }, + "routes": [ + { + "pattern": "red-right-hand.unnamed.group", + "custom_domain": true, + }, + ], +} -- cgit v1.2.3