25 lines
759 B
JavaScript
25 lines
759 B
JavaScript
|
// Template for production ecosystem file
|
||
|
|
||
|
// Copy this file and edit to set up pm2 config
|
||
|
// DO NOT COMMIT details to this file (publicly visible)
|
||
|
// See https://pm2.io/doc/en/runtime/guide/ecosystem-file/ for docs
|
||
|
module.exports = {
|
||
|
apps: [
|
||
|
{
|
||
|
name: "colouringlondon",
|
||
|
script: "./app/build/server.js",
|
||
|
instances: 2,
|
||
|
env: {
|
||
|
NODE_ENV: "production",
|
||
|
PGHOST: "hostname",
|
||
|
PGPORT: 5432,
|
||
|
PGDATABASE: "databasename",
|
||
|
PGUSER: "username",
|
||
|
PGPASSWORD: "longrandomsecret",
|
||
|
APP_COOKIE_SECRET: "longrandomsecret",
|
||
|
TILECACHE_PATH: "/path/to/tile/cache"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|