.dev.vars file?wrangler deletefunctionality seems a bit dangerous.. it would be nice if I could somehow restrict an API key to only be able to delete workers that were created by that same key... otherwise it could theoretically snipe anything else
remix vite:dev dev server? I can get it working using wrangler dev per https://developers.cloudflare.com/hyperdrive/configuration/local-development/#use-wrangler-dev (i'm using the new Workers, not Pages, FWIW). environment in the platform proxy that Remix uses. docs for this are here: https://developers.cloudflare.com/workers/wrangler/api/#getplatformproxy 

0 3 * * 1-5At 03:00 on every day-of-week from Monday through Friday.Schedule:At 03:00 AM, Sunday through Thursday and also executes like that.


.dev.varswrangler delete[
{
"sessionId": "04c89ae8-b1e6-4ed1-84b9-c496c4e9b74d",
"startTime": 1730880064300
},
{
"sessionId": "0d93f1a3-29e2-48aa-a06e-2333768846c9",
"startTime": 1730761299266
}
][ERROR] Uploading a Pages _worker.js file as an asset.
This could expose your private server-side code to the public Internet. Is this intended?
If you do not want to upload this file, either remove it or add an ".assetsignore" file, to the
root of your asset directory, containing "_worker.js" to avoid uploading.
If you do want to upload this file, you can add an empty ".assetsignore" file, to the root of your
asset directory, to hide this error.remix vite:devwrangler devenvironment0 3 * * 1-5At 03:00 on every day-of-week from Monday through Friday.Schedule:At 03:00 AM, Sunday through Thursday const id = c.env.MY_DURABLE_OBJECT.idFromName('unique-name')
const obj = c.env.MY_DURABLE_OBJECT.get(id)
const mostRecentOrders = await obj.mostRecentOrders()