Hi Community,
I am trying to use Temporal service to manage all the jobs/ tasks which takes manual input and is easy for admin users to use in Typescript.
Before I was using Hangfire with .NET and they have an interface for creating, tracking, editing tasks (one time tasks, repeating tasks etc). The way I integrated Hangfire was create one file for each type of job, this will create an interface taking all parameters from users. After I can use this interface to manage all jobs of the same type with different parameters.
I wonder if there is already something existing for Temporal? Or any other open source service that could fit?
Thanks,
Mark