mirror of
https://gitlab.silvrtree.co.uk/martind2000/recipes.git
synced 2025-01-10 20:55:07 +00:00
34 lines
684 B
JSON
34 lines
684 B
JSON
{
|
|
/**
|
|
* Application configuration section
|
|
* http://pm2.keymetrics.io/docs/usage/application-declaration/
|
|
*/
|
|
apps: [
|
|
// First application
|
|
{
|
|
"name": "Recipe",
|
|
"script": "recipe-server.js",
|
|
"cwd": "/var/www/recipes",
|
|
"watch": true,
|
|
"ignore_watch" : ["node_modules"],
|
|
"merge_logs" : true,
|
|
"autorestart" : true,
|
|
"restart_delay" : 3500,
|
|
"max_memory_restart" : "300M",
|
|
env: {
|
|
COMMON_VARIABLE: "true"
|
|
},
|
|
env_production: {
|
|
NODE_ENV: "production"
|
|
}
|
|
}
|
|
],
|
|
/**
|
|
* Deployment section
|
|
* http://pm2.keymetrics.io/docs/usage/deployment/
|
|
*/
|
|
deploy: {
|
|
|
|
}
|
|
}
|