fix(ci): dockerfile build script

This commit is contained in:
Ahmed Bouhuolia
2026-01-28 23:40:32 +02:00
parent f5bfdede30
commit 7874b9f765
12 changed files with 249 additions and 118 deletions

View File

@@ -17,6 +17,8 @@ import loops from './loops';
import bankfeed from './bankfeed';
import throttle from './throttle';
import cloud from './cloud';
import redis from './redis';
import queue from './queue';
export const config = [
app,
@@ -38,4 +40,6 @@ export const config = [
loops,
bankfeed,
throttle,
redis,
queue,
];

View File

@@ -0,0 +1,6 @@
import { registerAs } from '@nestjs/config';
export default registerAs('queue', () => ({
host: process.env.QUEUE_HOST || 'localhost',
port: parseInt(process.env.QUEUE_PORT, 10) || 6379,
}));