мы можем добавить список приложений, которые работают в другом порту.Это пример process.json в моем проекте.Здесь API работает на порту 3001, а storeapp работает на порту 3000.
{
"name": "api",
"script": "./src/api/server/index.js",
"node_args": "-r esm",
"watch": ["./config/server.js", "./src/api/server/"],
"instances": "1",
"exec_mode": "fork",
"watch_options": {
"persistent": true,
"ignoreInitial": false
}
},
{
"name": "storeapp",
"script": "./dist/store/server/index.js",
"node_args": "-r esm",
"watch": [
"./config/server.js",
"./theme/assets/index.html"
],
"instances": "1",
"exec_mode": "fork",
"watch_options": {
"persistent": true,
"ignoreInitial": false
}
}
]
}
```