aboutsummaryrefslogtreecommitdiff
path: root/trigger.config.ts
blob: cc33fb230f52c396dff669afe725e92bd13f56e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { defineConfig } from "@trigger.dev/sdk";

export default defineConfig({
	project: "proj_jpvyydwtsyyknzufswcs",
	logLevel: "log",
	maxDuration: 3600,
	retries: {
		enabledInDev: true,
		default: {
			maxAttempts: 3,
			minTimeoutInMs: 1000,
			maxTimeoutInMs: 10000,
			factor: 2,
			randomize: true,
		},
	},
});