trigger.dev icon indicating copy to clipboard operation
trigger.dev copied to clipboard

Trigger.dev – build and deploy fully‑managed AI agents and workflows

Results 316 trigger.dev issues
Sort by recently updated
recently updated
newest added

When using `io.runTask` you can specify retry settings (for when an error is thrown). The default is that no retrying happens. We provide a lot of settings and figuring out...

Events can be scheduled for the future using `deliverAt` or `deliverAfter` (see options in the docs: [https://trigger.dev/docs/sdk/io/sendevent](https://trigger.dev/docs/sdk/io/sendevent)). You can programatically cancel these using `cancelEvent()`: [https://trigger.dev/docs/sdk/triggerclient/instancemethods/cancel-event](https://trigger.dev/docs/sdk/triggerclient/instancemethods/cancel-event) We should add a Cancel...

To do any runs/indexing etc you need to connect to the Trigger.dev platform (either cloud of self-hosted). A fully local mode in the CLI would be nice for situations with...

It would be nice to be able to attach a Zod schema on a HTTP endpoint which would then correctly type the results of `request.json`: ```ts const endpoint = client.defineHttpEndpoint({...

This would be similar to our existing @trigger.dev/testing package, but with a new function where you wouldn't pass mocks – it would actually run the task code but mock out...

In our CI we should push to DockerHub because not all deploy platforms (Digital Ocean) support GitHub Container Repository From [SyncLinear.com](https://synclinear.com) | [TRI-1796](https://linear.app/triggerdotdev/issue/TRI-1796/push-to-dockerhub)

## Why is this happening `runTask` allows you to divide your work into small chunks. That means you can avoid hitting serverless timeouts when you deploy. It's important that we...

We use Redis to handle rate limiting run executions (by org, job, or concurrency group), and there is a specific scenario where runs can get stuck for an org, job,...

## How to do it You can restrict access to self-hosted instances of Trigger.dev by using the `WHITELISTED_EMAILS` environment variable. Like this: ```env WHITELISTED_EMAILS="authorized@yahoo\.com|authorized@gmail\.com" ``` It's a regex pattern so...

### Is your feature request related to a problem? Please describe. I am surprised that old-school HTTP pooling is used in [react](https://github.com/triggerdotdev/trigger.dev/blob/main/packages/react/src/fetch.ts) package instead of something like websockets. ### Describe...