From 701e3d79dee23096c6a9d342d03d19810cd3a3e8 Mon Sep 17 00:00:00 2001 From: Felix Mosheev <9304194+felixmosh@users.noreply.github.com> Date: Thu, 9 Jun 2022 09:22:31 +0300 Subject: [PATCH] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 77c286d9..96be2770 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,12 @@ serverAdapter.setBasePath('/admin/queues'); app.use('/admin/queues', serverAdapter.getRouter()); // other configurations of your server + +app.listen(3000, () => { + console.log('Running on 3000...'); + console.log('For the UI, open http://localhost:3000/admin/queues'); + console.log('Make sure Redis is running on port 6379 by default'); +}); ``` That's it! Now you can access the `/admin/queues` route, and you will be able to monitor everything that is happening in your queues 😁