artmura-site/ecosystem.config.cjs
// pm2 process config for the Artmura microsite.
// Local: pm2 start ecosystem.config.cjs · logs: pm2 logs artmura-site
module.exports = {
apps: [{
name: 'artmura-site',
script: 'server.js',
cwd: __dirname,
env: { NODE_ENV: 'production', PORT: process.env.PORT || 9920, VENDOR: 'artmura', BUNDLE: '1' },
max_memory_restart: '200M',
autorestart: true,
watch: false,
}],
};