This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const numberTranslate = ( | |
n: string | number, | |
translateTo: "Ban" | "Eng", | |
returnType: "string" | "number" = "string" | |
): string | number => { | |
const mapNumber = { | |
"০": 0, | |
"১": 1, | |
"২": 2, | |
"৩": 3, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"apps": [ | |
{ | |
"name": "app-name-one",//express js app | |
"cwd": "/directory/of/the/app", | |
"script": "dist/server.js", | |
"post_update": ["npm install", "npm run build"] | |
}, | |
{ | |
"name": "app-name-two", //next js app |