first commit

This commit is contained in:
Swapnil
2024-12-22 21:45:08 +05:30
commit 919989de52
72 changed files with 9777 additions and 0 deletions

17
ecosystem.config.json Normal file
View File

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