Update timezone settings from Asia/Jakarta to Asia/Dili across configuration files and codebase. Enhance logging for crawling events and improve error handling in the CrawlingService. Add a new workspace configuration file for easier project management.

This commit is contained in:
Sony Surahmn
2025-12-12 14:25:47 +07:00
parent e5baaf003a
commit 4b75f11beb
9 changed files with 443 additions and 226 deletions

View File

@ -12,17 +12,16 @@ module.exports = {
log_date_format: "YYYY-MM-DD HH:mm:ss Z",
merge_logs: true,
env: {
NODE_ENV: "default",
TZ: "Asia/Jakarta"
NODE_ENV: "development",
TZ: "Asia/Dili",
},
env_production: {
NODE_ENV: "prod",
TZ: "Asia/Jakarta"
TZ: "Asia/Dili",
},
autorestart: true,
max_restarts: 10,
min_uptime: "10s"
}
]
min_uptime: "10s",
},
],
};