MiniSearch / ecosystem.config.cjs
github-actions[bot]
Sync from https://github.com/felladrin/MiniSearch
bceb2ef
raw
history blame contribute delete
213 Bytes
module.exports = {
apps: [
{
name: "production-server",
script: "npm",
args: "start -- --host",
instances: "max",
env: {
NODE_ENV: "production",
},
},
],
};