mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
27 lines
482 B
JSON
27 lines
482 B
JSON
{
|
|
"name": "module-test",
|
|
"version": "1.0.0",
|
|
"description": "PM2 Sample Module",
|
|
"main": "app.js",
|
|
"dependencies": {
|
|
"pmx": "beta"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/keymetrics/pmx.git"
|
|
},
|
|
"config": {
|
|
"conf_var_1": true,
|
|
"conf_var_2": "myvalue"
|
|
},
|
|
"apps": [
|
|
{
|
|
"merge_logs": true,
|
|
"max_memory_restart": "200M",
|
|
"script": "app.js"
|
|
}
|
|
],
|
|
"author": "Keymetrics Inc.",
|
|
"license": "MIT"
|
|
}
|