claude-flow-novice
Version:
Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture Includes Local RuVector Accelerator and all CFN skills for complete functionality.
27 lines • 1.17 kB
JavaScript
// ============================================================================
// DEPRECATION NOTICE
// ============================================================================
// Trigger.dev has been removed from the CFN Loop architecture
// This file is kept for backward compatibility with the SEO platform
// The SEO functionality will be refactored to use local execution
// The configuration is no longer used for trigger.dev deployment
// ============================================================================
export const config = {
project: process.env.TRIGGER_PROJECT_ID || "proj_uuvpcrkpfruhlpbpzlov",
maxDuration: 600, // 10 minutes in seconds (required)
retries: {
enabledInDev: true,
default: {
maxAttempts: 3,
factor: 2,
minTimeoutInMs: 1000,
maxTimeoutInMs: 30000,
randomize: true,
},
},
dirs: ["./src/trigger"],
};
// Note: When @trigger.dev/sdk/v3 is installed, update the import to:
// import type { TriggerConfig } from "@trigger.dev/sdk/v3";
// Also remove the local interface definition above
//# sourceMappingURL=trigger.config.js.map