mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
18 lines
268 B
JSON
18 lines
268 B
JSON
{
|
|
"name": "multi-app-module",
|
|
"version": "0.1",
|
|
"pm2": [{
|
|
"name" : "first_app",
|
|
"script": "http.js",
|
|
"env" : {
|
|
"PORT" : "8005"
|
|
}
|
|
}, {
|
|
"name" : "second_app",
|
|
"script" : "./http.js",
|
|
"env" : {
|
|
"PORT" : "8002"
|
|
}
|
|
}]
|
|
}
|