Merge branch 'main' of https://g.wace.me/jskim/vexplor_dev
Some checks failed
Build and Push Images / build-and-push (push) Failing after 1m28s

This commit is contained in:
SeongHyun Kim
2026-04-07 15:47:40 +09:00
229 changed files with 139264 additions and 22736 deletions

View File

@@ -461,6 +461,8 @@ async function initializeServices() {
runApprovalSystemMigration,
runUserMailAccountsMigration,
runMessengerMigration,
runSmartFactoryLogMigration,
runSmartFactoryScheduleMigration,
} = await import("./database/runMigration");
await runDashboardMigration();
@@ -469,6 +471,8 @@ async function initializeServices() {
await runApprovalSystemMigration();
await runUserMailAccountsMigration();
await runMessengerMigration();
await runSmartFactoryLogMigration();
await runSmartFactoryScheduleMigration();
} catch (error) {
logger.error(`❌ 마이그레이션 실패:`, error);
}
@@ -482,6 +486,11 @@ async function initializeServices() {
const { CrawlService } = await import("./services/crawlService");
await CrawlService.initializeScheduler();
logger.info(`🕷️ 크롤링 스케줄러가 시작되었습니다.`);
// 스마트공장 로그 스케줄러 초기화
const { initSmartFactoryScheduler } = await import("./utils/smartFactoryLog");
await initSmartFactoryScheduler();
logger.info(`🏭 스마트공장 로그 스케줄러가 시작되었습니다.`);
} catch (error) {
logger.error(`❌ 배치 스케줄러 초기화 실패:`, error);
}