This commit is contained in:
2025-12-10 13:46:12 +07:00
commit eb34980465
36 changed files with 2780 additions and 0 deletions

14
ecosystem.config.js Normal file
View File

@ -0,0 +1,14 @@
module.exports = {
apps: [
{
name: "svc-hcmbridge",
script: "dist/src/index.js",
env: {
NODE_ENV: "default"
},
env_production: {
NODE_ENV: "prod"
}
}
]
};