mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('queue', () => ({
|
|
host: process.env.QUEUE_HOST || 'localhost',
|
|
port: parseInt(process.env.QUEUE_PORT, 10) || 6379,
|
|
}));
|