Hi, is there a way to grant devs access to remote dev DB without them registering to cloudflare and
Hi, is there a way to grant devs access to remote dev DB without them registering to cloudflare and login via cli?
npx wrangler d1 execute deebee --local --file=./schema.sqlworker.ts using addEventListener or export default?[[d1_databases]] it then displayes a warning saying that I have to attach env.dev to it, but it doesn't bind it anyway
The spellfix1 virtual table is not included in the SQLite amalgamation and is not a part of any standard SQLite build

yarn dev, I want to use a local D1 created with npx wrangler d1 somecommand --local in api/foo/bar/route.ts. However, even after referring to the following page, I can't seem to bind it properly in my local environment. 
wrangler d1 execute like you did;await.{"served_by":"v3-prod","duration":0.6271,"changes":0,"last_row_id":0,"changed_db":false,"size_after":144568320,"rows_read":1,"rows_written":0}npx wrangler d1 execute deebee --local --file=./schema.sqlmain = "worker.ts"
account_id = "123" # Cloudflare account id
compatibility_date = "2023-10-13"
[env.prod]
name = "road2crypto-router-prod"
routes = [
{ pattern = "api.road2crypto.com", custom_domain = true }
]
[env.dev]
name = "road2crypto-router-dev"
routes = [
{ pattern = "api.dev.road2crypto.com", custom_domain = true }
][[env.dev.d1_databases]]
binding = "DB" # i.e. available in your Worker on env.DB
database_name = "road2crypto-db"
database_id = "123"✘ [ERROR] A request to the Cloudflare API (/accounts/123/workers/scripts/road2crypto-router-dev) failed.
D1 bindings require module-format workers. [code: 10021]worker.tsaddEventListenerexport default[[d1_databases]]env.devaddEventListener("fetch", (event: FetchEvent) => {
event.respondWith(handleRequest(event.request));
});
async function handleRequest(request: Request): Promise<Response> {
return handleResponse(request);
}npx wrangler d1 somecommand --localapi/foo/bar/route.tswrangler d1 execute;{"served_by":"v3-prod","duration":0.6271,"changes":0,"last_row_id":0,"changed_db":false,"size_after":144568320,"rows_read":1,"rows_written":0}