Upgrade bullmq-admin

This commit is contained in:
Jackson Harper
2024-01-24 09:42:18 +08:00
parent 7ab5d50fd1
commit 7a987c9a7c
3 changed files with 24 additions and 166 deletions

View File

@ -105,8 +105,8 @@ const run = async () => {
serverAdapter.getRouter()
)
app.listen(8080, () => {
console.log('Running on 8080...')
app.listen(process.env.PORT ?? 8080, () => {
console.log(`Running on ${process.env.PORT ?? 8080}...`)
})
}