ataractic
Is there an idiomatic/common/modern way of creating a queue of jobs to be executed one after anot...
Is there an idiomatic/common/modern way of creating a queue of jobs to be executed one after another using Deno and typescript?
Example: Multiple users wants to execute a resource heavy job by clicking a button on their dashboard, however to not lag the host, only one job should be executed at a time.
26 replies
I use Deno KV for my application, and I'm planning to use Deno Deploy. Can I allow deploy to use...
I use Deno KV for my application, and I'm planning to use Deno Deploy. Can I allow deploy to use KV database? How can I get access to KV experimental on Deploy?
17 replies
Manually edit existing KV table
Hello! another day, another question.
Is there a way to manually edit KV database to modify an entry?
For example suppose I have this entry in my database for a user, how can I manually change the user
role
property?3 replies
Looking to deploy Deno Fresh on VPS using port 443
Hello! I have two questions,
I used saaskit as a base. However fresh's start function is using
serve()
and not serveTls()
. The problem is I cannot expose on 443 since I can't provide certificate and key as start options. Any advice? Should I write a custom start function?
My second question is about continuous deployment: I have setup a gitlab runner on my VPS that handles the process of running on each new commit, but unlike NPM, the deno runtime is "listening" and the pipeline stays in "running" state. Is there any solution to this?
Thank you!18 replies