mirror of
https://gitlab.silvrtree.co.uk/martind2000/obrand-admin-server.git
synced 2025-01-10 20:55:07 +00:00
22 lines
372 B
JSON
22 lines
372 B
JSON
{
|
|
/**
|
|
* Application configuration section
|
|
* http://pm2.keymetrics.io/docs/usage/application-declaration/
|
|
*/
|
|
apps : [
|
|
|
|
// First application
|
|
{
|
|
name : "Obrand Admin Server",
|
|
script : "obrand-server.js",
|
|
env: {
|
|
COMMON_VARIABLE: "true"
|
|
},
|
|
env_production : {
|
|
NODE_ENV: "production"
|
|
}
|
|
}
|
|
]
|
|
|
|
}
|