mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
43 lines
1.0 KiB
TypeScript
43 lines
1.0 KiB
TypeScript
import { Config, Env, Nested } from '@n8n/config';
|
|
|
|
@Config
|
|
class HealthcheckServerConfig {
|
|
@Env('N8N_RUNNERS_HEALTH_CHECK_SERVER_ENABLED')
|
|
enabled: boolean = false;
|
|
|
|
@Env('N8N_RUNNERS_HEALTH_CHECK_SERVER_HOST')
|
|
host: string = '127.0.0.1';
|
|
|
|
@Env('N8N_RUNNERS_HEALTH_CHECK_SERVER_PORT')
|
|
port: number = 5681;
|
|
}
|
|
|
|
@Config
|
|
export class BaseRunnerConfig {
|
|
@Env('N8N_RUNNERS_TASK_BROKER_URI')
|
|
taskBrokerUri: string = 'http://127.0.0.1:5679';
|
|
|
|
@Env('N8N_RUNNERS_GRANT_TOKEN')
|
|
grantToken: string = '';
|
|
|
|
@Env('N8N_RUNNERS_MAX_PAYLOAD')
|
|
maxPayloadSize: number = 1024 * 1024 * 1024;
|
|
|
|
@Env('N8N_RUNNERS_MAX_CONCURRENCY')
|
|
maxConcurrency: number = 5;
|
|
|
|
/**
|
|
* How long (in seconds) a runner may be idle for before exit. Intended
|
|
* for use in `external` mode - launcher must pass the env var when launching
|
|
* the runner. Disabled with `0` on `internal` mode.
|
|
*/
|
|
@Env('N8N_RUNNERS_AUTO_SHUTDOWN_TIMEOUT')
|
|
idleTimeout: number = 0;
|
|
|
|
@Env('GENERIC_TIMEZONE')
|
|
timezone: string = 'America/New_York';
|
|
|
|
@Nested
|
|
healthcheckServer!: HealthcheckServerConfig;
|
|
}
|