The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/ee/server/services/ecosystem.config.js

33 lines
686 B

const watch = ['.', '../broker.ts', '../../../server/sdk'];
module.exports = {
apps: [
{
name: 'authorization',
watch: [...watch, '../../../server/services/authorization'],
},
{
name: 'presence',
},
{
name: 'account',
},
{
name: 'stream-hub',
},
{
name: 'ddp-streamer',
},
].map((app) =>
Object.assign(app, {
script: app.script || `ts-node --files ${app.name}/service.ts`,
watch: app.watch || ['.', '../broker.ts', '../../../server/sdk', '../../../server/modules'],
instances: 1,
env: {
MOLECULER_LOG_LEVEL: 'info',
TRANSPORTER: 'nats://localhost:4222',
MONGO_URL: 'mongodb://localhost:3001/meteor',
},
}),
),
};