This commit is contained in:
KienVT9 2025-07-11 17:28:40 +07:00
parent e45c62215e
commit d8f8b04943
15 changed files with 458 additions and 162 deletions

18
ecosystem.config.js Normal file
View file

@ -0,0 +1,18 @@
module.exports = {
apps: [
{
name: "ai-trading-sys",
script: "node dist/app.js",
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: "512M",
env: {
NODE_ENV: "development",
},
env_production: {
NODE_ENV: "production",
},
},
],
};