mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-09 23:48:36 +01:00
17 lines
439 B
JavaScript
17 lines
439 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'Producer',
|
|
port: '3000',
|
|
exec_mode: 'fork',
|
|
script: './dist/producer/src/index.js',
|
|
env: {
|
|
PORT: "8088",
|
|
REDIS_URL: "redis://litlyx.com",
|
|
REDIS_USERNAME: "default",
|
|
REDIS_PASSWORD: "cameriera",
|
|
STREAM_NAME: "lib-events"
|
|
}
|
|
}
|
|
]
|
|
} |