Integrate Oudelaa backend features, security, tests, and deployment updates

هذا الالتزام موجود في:
boutmoun123
2026-07-26 16:58:53 +03:00
الأصل 1b24ca4294
التزام 2fd5322ef7
178 ملفات معدلة مع 19068 إضافات و2592 حذوفات

عرض الملف

@@ -139,6 +139,16 @@ async function main() {
2,
),
);
} catch (error) {
const reason = error instanceof Error ? error.message : String(error);
throw new Error(
[
reason,
`Child exit code: ${child.exitCode ?? 'still-running'}`,
`Recent stdout: ${stdoutLines.join(' | ') || 'none'}`,
`Recent stderr: ${stderrLines.join(' | ') || 'none'}`,
].join('\n'),
);
} finally {
await terminate(child);
}