Files
litlyx/broker/ecosystem.config.example.cjs
2024-06-09 19:00:44 +02:00

17 lines
391 B
JavaScript

module.exports = {
apps: [
{
name: 'Producer',
port: '3000',
exec_mode: 'fork',
script: './dist/producer/src/index.js',
env: {
PORT: "",
REDIS_URL: "",
REDIS_USERNAME: "",
REDIS_PASSWORD: "",
STREAM_NAME: ""
}
}
]
}