
* feat: perform pending migrations in start command * feat: log error when DB connection is refused * feat: log error when Redis connection is refused * refactor: fix type errors * fix: correct server and copy graphql schema * fix: differentiate migrations by env * chore: remove dev executable * chore: fix typo in default postgresUsername * fix: copy json files into dist folder * chore(cli): add dev script * chore: pull non-dev logs to info level * feat(cli): run app in start command * fix(backend): remove default count in Connection * fix(cli): remove .eslintrc usage in lint script * refactor: remove disableMigrationsListValidation * refactor: make Step optional in ExecutionStep * refactor: make Flow optional in Step
23 lines
607 B
TypeScript
23 lines
607 B
TypeScript
import process from 'process';
|
|
import { Queue, QueueScheduler } from 'bullmq';
|
|
import redisConfig from '../config/redis';
|
|
import logger from '../helpers/logger';
|
|
|
|
const CONNECTION_REFUSED = 'ECONNREFUSED';
|
|
|
|
const redisConnection = {
|
|
connection: redisConfig,
|
|
};
|
|
|
|
const processorQueue = new Queue('processor', redisConnection);
|
|
new QueueScheduler('processor', redisConnection);
|
|
|
|
processorQueue.on('error', (err) => {
|
|
if ((err as any).code === CONNECTION_REFUSED) {
|
|
logger.error('Make sure you have installed Redis and it is running.', err);
|
|
process.exit();
|
|
}
|
|
});
|
|
|
|
export default processorQueue;
|