janat08
Explore posts from serversDTDrizzle Team
•Created by janat08 on 5/2/2024 in #help
How to init sqlite project?
I looked at drizzle kit, and that's the answer, but it's not a getting started guide if you don't have a sqlite file to init d1 db with.
2 replies
CDCloudflare Developers
•Created by janat08 on 4/9/2024 in #workers-help
/__scheduled won’t connect
I wasn't running latest wrangler.
11 replies
CDCloudflare Developers
•Created by janat08 on 4/9/2024 in #workers-help
/__scheduled won’t connect
No server connection. im also running windows and have to pass ip param to wrangler dev. i guess ill try different OS or pass the ip.
11 replies
CDCloudflare Developers
•Created by janat08 on 4/9/2024 in #workers-help
/__scheduled won’t connect
is there a way to check if it crashes and exits silently?
11 replies
CDCloudflare Developers
•Created by janat08 on 4/9/2024 in #workers-help
/__scheduled won’t connect
copilot says that the cron function will run automatically
11 replies
CDCloudflare Developers
•Created by janat08 on 4/9/2024 in #workers-help
/__scheduled won’t connect
I'm trying to do cron jobs to get new access token for paypal api
11 replies
CDCloudflare Developers
•Created by janat08 on 4/9/2024 in #workers-help
/__scheduled won’t connect
I do npm run cronDev and it doesn't connect to :8787/__scheduled
11 replies
CDCloudflare Developers
•Created by janat08 on 4/9/2024 in #workers-help
/__scheduled won’t connect
export default {
async scheduled(event: ScheduledEvent, env: Env, ctx: ExecutionContext): Promise<void> {
await cronAuth(env)
},
async fetch(request: Request, env: Env) {
return await app.fetch(request, env);
},
};
11 replies
CDCloudflare Developers
•Created by janat08 on 4/9/2024 in #workers-help
/__scheduled won’t connect
"cronDev": "wrangler dev --test-scheduled",
[triggers]
crons =["*/50 * * * *"]
11 replies