Initialize web application via create-cloudflare CLI

Details:
  C3 = create-cloudflare@2.62.0
  project name = anum-frontend
  framework = react-router
  framework cli = create-react-router@7.9.6
  package manager = pnpm@10.26.1
  wrangler = wrangler@4.57.0
  git = 2.52.0
This commit is contained in:
Xory 2026-01-07 19:29:42 +02:00
commit 475596444a
21 changed files with 3292 additions and 0 deletions

37
wrangler.jsonc Normal file
View file

@ -0,0 +1,37 @@
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "anum-frontend",
"compatibility_date": "2025-04-04",
"main": "./workers/app.ts",
"vars": {
"VALUE_FROM_CLOUDFLARE": "Hello from Cloudflare"
},
"observability": {
"enabled": true
}
/**
* Smart Placement
* https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
*/
// "placement": { "mode": "smart" }
/**
* Bindings
* Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
* databases, object storage, AI inference, real-time communication and more.
* https://developers.cloudflare.com/workers/runtime-apis/bindings/
*/
/**
* Static Assets
* https://developers.cloudflare.com/workers/static-assets/binding/
*/
// "assets": { "directory": "./public/", "binding": "ASSETS" }
/**
* Service Bindings (communicate between multiple Workers)
* https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
*/
// "services": [ { "binding": "MY_SERVICE", "service": "my-service" } ]
}