Files
TypeScript-Backend-satyam/ecosystem.config.json

18 lines
246 B
JSON
Raw Normal View History

2024-12-17 19:43:28 +05:30
{
"apps": [
{
"name": "Typescript-Backend",
"script": "npm",
"args": "run start",
"instances": 1,
"autorestart": true,
"watch": false,
"time": true,
"env": {
"NODE_ENV": "production",
"PORT": 3000
}
}
]
2024-12-17 19:43:28 +05:30
}