[update] - Readme file and ecosystem config file

This commit is contained in:
Swapnil Bendal
2024-12-18 20:07:42 +05:30
parent b359e0e2d0
commit 8eee93c6a7
2 changed files with 98 additions and 19 deletions

View File

@@ -1,16 +1,17 @@
{
"apps": [
{
"name": "Typescript-Backend",
"script": "src/index.ts",
"instances": 1,
"autorestart": true,
"watch": false,
"time": true,
"env": {
"NODE_ENV": "production",
"PORT": 3000
}
}
]
"apps": [
{
"name": "Typescript-Backend",
"script": "npm",
"args": "run start",
"instances": 1,
"autorestart": true,
"watch": false,
"time": true,
"env": {
"NODE_ENV": "production",
"PORT": 3000
}
}
]
}