Feature/setup bull queue system (#886)

* Setup @nestjs/bull and asset profile data gathering job

* Update changelog
This commit is contained in:
Thomas Kaul
2022-05-07 20:00:51 +02:00
committed by GitHub
parent 5622c4cf7e
commit 40380346e6
14 changed files with 333 additions and 63 deletions

View File

@@ -44,8 +44,12 @@ export const warnColorRgb = {
export const ASSET_SUB_CLASS_EMERGENCY_FUND = 'EMERGENCY_FUND';
export const DATA_GATHERING_QUEUE = 'DATA_GATHERING_QUEUE';
export const DEFAULT_DATE_FORMAT_MONTH_YEAR = 'MMM yyyy';
export const GATHER_ASSET_PROFILE_PROCESS = 'GATHER_ASSET_PROFILE';
export const PROPERTY_COUPONS = 'COUPONS';
export const PROPERTY_CURRENCIES = 'CURRENCIES';
export const PROPERTY_IS_READ_ONLY_MODE = 'IS_READ_ONLY_MODE';

View File

@@ -1,4 +1,5 @@
import { Tag } from '@prisma/client';
import { Statistics } from './statistics.interface';
import { Subscription } from './subscription.interface';