Files
n8n-enterprise-unlocked/scripts/backend-module/my-feature.config.template
2025-07-18 14:34:48 +02:00

12 lines
220 B
Plaintext

import { Config, Env } from '@n8n/config';
@Config
export class MyFeatureConfig {
/**
* How often in minutes to run some task.
* @default 30
*/
@Env('N8N_MY_FEATURE_TASK_INTERVAL')
taskInterval: number = 30;
}