Files
litlyx/broker/ecosystem.config.example.cjs
2024-05-31 14:08:51 +02:00

19 lines
452 B
JavaScript

module.exports = {
apps: [
{
name: 'QueueBroker',
port: '3000',
exec_mode: 'cluster',
instances: '2',
script: './dist/index.js',
env: {
EMAIL_SERVICE: "",
EMAIL_HOST: "",
EMAIL_USER: "",
EMAIL_PASS: "",
PORT: "",
MONGO_CONNECTION_STRING: ""
}
}
]
}