chore(benchmark): Enable insights in benchmarks by default and remove most insights specific benchmark setups (#17892)

This commit is contained in:
Danny Martini
2025-08-04 08:02:00 +02:00
committed by GitHub
parent 4247477b3d
commit 557e261d67
16 changed files with 6 additions and 474 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env zx
import path from 'path';
import { fs } from 'zx';
/**
* Creates the needed directories so the permissions get set correctly.
*/
export function setup({ runDir }) {
const neededDirs = ['n8n-worker1', 'n8n-worker2', 'n8n-main', 'postgres'];
for (const dir of neededDirs) {
fs.ensureDirSync(path.join(runDir, dir));
}
}