Skip to content

Commit

Permalink
Update bull-board to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Deadly0 committed Jan 14, 2021
1 parent 1ee30c0 commit d659e7f
Show file tree
Hide file tree
Showing 3 changed files with 497 additions and 199 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Docker image for [bull-board]. Allow you to monitor your bull queue without any coding!

Supports both: bull and bullmq. bull-board version 1.0.0-alpha.4
Supports both: bull and bullmq. bull-board version v1.2.0

### Quick start with Docker
```
Expand Down
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const redisConfig = {
redis: {
port: REDIS_PORT,
host: REDIS_HOST,
...(REDIS_PASSWORD && { password: REDIS_PASSWORD }),
...(REDIS_PASSWORD && {password: REDIS_PASSWORD}),
tls: REDIS_USE_TLS === 'true',
},
};
Expand All @@ -36,7 +36,7 @@ client.KEYS(`${prefix}:*`, (err, keys) => {

const app = express();

app.use(`${basePath}`, router);
app.use(basePath, router);
app.listen(port, () => {
console.log(`bull-board listening on port ${port} on basePath "${basePath}"!`);
console.log(`bull-board listening on port ${port} on basePath ${basePath}!`);
});
Loading

0 comments on commit d659e7f

Please sign in to comment.