What's going wrong?
im trying to run a application, but i need multiple instances
How could we reproduce this issue?
start a typescript application with "interpreter": "bun", instances: 2+ and "exec_mode": "cluster"
if needed app.json
{
"apps": [
{
"name": "app",
"script": "./src/server.ts",
"interpreter": "bun",
"instances": 4,
"exec_mode": "cluster"
}
]
}
Supporting information
# Run the following commands
$ pm2 report