mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
11 lines
177 B
TypeScript
11 lines
177 B
TypeScript
import env from '#start/env'
|
|
|
|
const queueConfig = {
|
|
connection: {
|
|
host: env.get('REDIS_HOST'),
|
|
port: env.get('REDIS_PORT') ?? 6379,
|
|
},
|
|
}
|
|
|
|
export default queueConfig
|