patrickalima98
DeployCTL deploy without getting a new github token every time?
Hi @BradMcA , Can you generate deploy tokens for your organization?
Org > Settings > Access Tokens
With this token you can export in your terminal or OS Env Variables as DENO_DEPLOY_TOKEN . So Deployclt will use this automatically!
4 replies
drizzle orm for deno and sqlite?
Hi, the orm yes! Today, I'm using the sqlite and drizzle with deno for a small CMS in production.
The Drizzle and sqlite (I'm using Turso) works very well with the node compability
npm:drizzle-orm
.
The unique problem You'll have is with migrations (npm:drizzle-kit), because the drizzle migration is build with node workers where is not fully compatible with deno, you can see this comments where suggest a workaround to use very.
https://github.com/denoland/deno/issues/198265 replies