daniel
daniel
CDCloudflare Developers
Created by daniel on 12/20/2024 in #pages-help
How to view and remove erroneous bindings?
Just bumped into this limitation after hard coding the mongo env var and getting new errors. Anyone have suggestions or if I wanna use Mongo (raw driver, Prisma, etc) then Cloudflare Pages isn't the right place to host? https://alexbevi.com/blog/2024/09/11/why-cloudflare-workers-dont-work-with-mongodb/
5 replies
CDCloudflare Developers
Created by daniel on 12/20/2024 in #pages-help
How to view and remove erroneous bindings?
No description
5 replies
CDCloudflare Developers
Created by daniel on 12/20/2024 in #pages-help
How to view and remove erroneous bindings?
What I've tried: - in dash, deleting the var and then re-adding from wrangler pages secret put
5 replies
CDCloudflare Developers
Created by daniel on 12/20/2024 in #pages-help
How to view and remove erroneous bindings?
No description
5 replies
CDCloudflare Developers
Created by daniel on 11/24/2024 in #pages-help
Are KV service bindings compatible with Remix Pages?
cc @Denise 😇
12 replies
CDCloudflare Developers
Created by daniel on 11/24/2024 in #pages-help
Are KV service bindings compatible with Remix Pages?
No description
12 replies
CDCloudflare Developers
Created by daniel on 11/24/2024 in #pages-help
Are KV service bindings compatible with Remix Pages?
No description
12 replies
CDCloudflare Developers
Created by daniel on 11/24/2024 in #pages-help
Are KV service bindings compatible with Remix Pages?
I think the overarching tricky element here is weaving through the docs for the Remix-specific scenarios which have nuance given the functions/[[path.ts]] Worker
12 replies
CDCloudflare Developers
Created by daniel on 11/24/2024 in #pages-help
Are KV service bindings compatible with Remix Pages?
No description
12 replies
CDCloudflare Developers
Created by daniel on 11/24/2024 in #pages-help
Are KV service bindings compatible with Remix Pages?
I see. A lot here to dig into getting this working but the gist seems to be, correct me if wrong -- - leave the C3 generated functions/[[path.ts]] alone - setup special Vite Cloudflare platform proxy config - add binding via Wrangler - use bindings in Remix's loader/actions functions from Context Thanks Daniel 🙇
12 replies
CDCloudflare Developers
Created by niconiahi on 11/13/2023 in #pages-help
Recommended way of registering a Durable Object
Thanks for asking this. Came here for similar reason as I created a Remix Cloudflare Pages project and now want to create a Durable Object to use with it, but can't find that example in the docs, hitting a lot of errors trying to make it work
14 replies
CDCloudflare Developers
Created by daniel on 11/11/2024 in #pages-help
For Remix.js what is the wrangler deploy entry point?
Solved. For posterity, the issue was running npx wrangler ... instead of its equivalent via the npm context of the application. Given the wrangler.toml my instinct was that npx wrangler ... should consume and effectively operate identically to if it was run via npm run... but *clearly not *. Maybe a DX or docs improvement to be had here
"scripts": {
"build": "remix vite:build",
"deploy": "npm run build && wrangler pages deploy",
...
"scripts": {
"build": "remix vite:build",
"deploy": "npm run build && wrangler pages deploy",
...
2 replies