Migrations are only for if you create a new class, rename a class, or delete a class. They don't nee
Migrations are only for if you create a new class, rename a class, or delete a class. They don't need to be added for each deploy
--remote mode is kind of weird because it has to interact with prod services for stuff like R2known issue with fetch() requests to custom HTTPS ports in published Workers: the custom port will be ignored when the Worker is published using the "wrangler deploy" command.Waiting for DNS to propagate (36s) ... for like 15 min now, even though I can access the deployment already. Any idea what could the cause be?npm run deploy 
wrangler types add the generic "body" type for a Queue?npx wranger secret put foo. It opens up the cloudflare consent screen, but then when I click "allow", it hangs. Any thoughts?--test-scheduled working for folks in the latest version of Wrangler?--x-dev-env=false fix it?pnpm run build --filter create-cloudflare then running pnpm create cloudflare hello-world --type hello-world --ts --git doesn't appear to run my local code. What am I doing wrong?unstable_dev?logLevelpnpm dev uses the local database (which is fine most of the time). There is no pnpm dev --remote like there was using wrangler dev. Is there some way to make it work? Environment variable maybe?
[wrangler:inf] GET /api/me 500 Internal Server Error (43ms) which is entirely useless for any purpose whatsoever.
known issue with fetch() requests to custom HTTPS ports in published Workers: the custom port will be ignored when the Worker is published using the "wrangler deploy" command. npm create cloudflare@latest -- cf-remix-app --framework=remix Waiting for DNS to propagate (36s) ...npm run deployinit —from-dashexport CLOUDFLARE_API_TOKEN="API token generated from the Edit Workers (or equivalent) template"Queuenpx wranger secret put foo--test-scheduled--x-dev-env=falsepnpm run build --filter create-cloudflarepnpm create cloudflare hello-world --type hello-world --ts --gitunstable_devlogLevelpnpm dev --remote[wrangler:inf] GET /api/me 500 Internal Server Error (43ms)addEventListener('error', (e) => {
console.log(e.error);
});export async function getDB(c: Bindings) {
if (c.ENV == "development") {
return new Kysely<Database>({
dialect: new MysqlDialect({
pool: createConnection ({
host: c.DATABASE_HOST,
database: c.DATABASE_DATABASE,
user: c.DATABASE_USERNAME,
password: c.DATABASE_PASSWORD,
})
})
})
} else {
return new Kysely<Database>({
dialect: new PlanetScaleDialect({
username: c.DATABASE_USERNAME,
password: c.DATABASE_PASSWORD,
host: c.DATABASE_HOST
})
})
}
}