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

@ -1,37 +1,36 @@
{
"app": {
"name": "SVC-HCM-CRAWLER",
"description": "Hikvision Device Crawling Service",
"version": "1.0.0",
"env": "Development"
},
"crawler": {
"interval": "*/1 * * * *",
"maxResults": 10,
"timeout": 10000
},
"database": {
"hcm": {
"engine": "mysql",
"host": "127.0.0.1",
"port": "3306",
"username": "root",
"password": "r00t@dm1n05",
"database": "tt_hcm",
"logging": false,
"sync": false
"app": {
"name": "SVC-HCM-CRAWLER",
"description": "Hikvision Device Crawling Service",
"version": "1.0.0",
"env": "Development"
},
"crawler": {
"interval": "*/1 * * * *",
"maxResults": 10,
"timeout": 10000
},
"database": {
"hcm": {
"engine": "mysql",
"host": "127.0.0.1",
"port": "3306",
"username": "root",
"password": "r00t@dm1n05",
"database": "tt_hcm",
"logging": false,
"sync": false
}
},
"bridge": {
"host": "127.0.0.1",
"port": "3000",
"endpoint": "/api/dooraccess/logs",
"timeout": 30000
},
"hikvision": {
"defaultUsername": "admin",
"defaultPassword": "Passwordhik_1",
"defaultPort": 80
}
},
"bridge": {
"host": "127.0.0.1",
"port": "3000",
"endpoint": "/api/dooraccess/logs",
"timeout": 30000
},
"hikvision": {
"defaultUsername": "admin",
"defaultPassword": "Passwordhik_1",
"defaultPort": 80
}
}
}