patrickalima98
Explore posts from serversUnable to update entrypoint configuration on Deno Deploy
The project is working perfect:
https://patrickalim-deno-deploy-78.deno.dev/
9 replies
Setup simple prod ready Rest API project
You can check this tutorial:
https://www.youtube.com/watch?v=J8kZ-s-5-ms
4 replies
Setup simple prod ready Rest API project
Hello, I've never used the Zed IDE. But for rest api you can use Hono for it:
https://hono.dev/
It's very good for serverless platform like Deno Deploy or CF Workes. With Deno you can use too express, oak.
https://docs.deno.com/examples/express_tutorial/
4 replies
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