690322:2123 Fixing Deployment Errors
CI / CD Pipeline / build (push) Failing after 7m56s
CI / CD Pipeline / release (push) Has been skipped
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-03-22 21:23:08 +07:00
parent 5dad7ab7c1
commit 4dc14aba5b
28 changed files with 324 additions and 67 deletions
-5
View File
@@ -10,14 +10,9 @@ async function runSeeds() {
await dataSource.initialize();
try {
// console.log('🌱 Seeding database...');
await seedOrganizations(dataSource);
await seedUsers(dataSource);
// console.log('✅ Seeding completed!');
} catch (_error) {
// console.error('❌ Seeding failed:', _error);
} finally {
await dataSource.destroy();
}
@@ -130,14 +130,9 @@ export const seedWorkflowDefinitions = async (dataSource: DataSource) => {
is_active: true,
})
);
// console.log(`✅ Seeded Workflow: ${dsl.workflow} v${dsl.version}`);
} catch (_error) {
// console.error(`❌ Failed to seed workflow ${dsl.workflow}:`, _error);
}
} else {
// console.log(
// `⏭️ Workflow already exists: ${dsl.workflow} v${dsl.version}`
// );
}
}
};