miniSearch / ecosystem.config.cjs
github-actions[bot]
Sync to HuggingFace Spaces
f152ae2
raw
history blame contribute delete
213 Bytes
module.exports = {
apps: [
{
name: "production-server",
script: "npm",
args: "start -- --host",
instances: "max",
env: {
NODE_ENV: "production",
},
},
],
};