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

export const config: TriggerConfig = {
	project: 'proj_jpvyydwtsyyknzufswcs',
	logLevel: 'log',
	retries: {
		enabledInDev: true,
		default: {
			maxAttempts: 3,
			minTimeoutInMs: 1000,
			maxTimeoutInMs: 10000,
			factor: 2,
			randomize: true
		}
	}
};