rq-dashboard icon indicating copy to clipboard operation
rq-dashboard copied to clipboard

RQ-Dashboard Interface Mismatch

Open diogper opened this issue 3 years ago • 3 comments

Hello everyone, I started using rq-dashboard but I noticed that although the rq-dashboard version is the same from pip and docker container, both have different user interface.

From docker container I get something like: image

But from flask integration and pip I get: image

I integrated directly on my flask server using the blueprint register.

Any idea why this happens? I wanted really to integrate it with my flask app cause I do not want to spawn more containers... Thank you for your time.

diogper avatar Aug 08 '22 16:08 diogper

I think this happens because docker pull eoranged/rq-dashboard pulls from the master branch and with pip install rq-dashboard you install 0.6.1. The html template files from 0.6.1 and the master branch are different.

In the readme there is also a snippet for integrating the dashboard in flask. For 0.6.1 this worked without issues for me but for the version on the master branch I got a no redis configuration error. Just add app.config["RQ_DASHBOARD_REDIS_URL"] = 'redis://localhost:6379' to your flask config then.

FriedRiceWithEggs avatar Aug 09 '22 12:08 FriedRiceWithEggs

So I just issued pip install "git+https://github.com/rq/rq-scheduler.git" and still I receive the deprecated web interface... :-/

diogper avatar Aug 10 '22 08:08 diogper

So I just issued pip install "git+https://github.com/rq/rq-scheduler.git" and still I receive the deprecated web interface... :-/

Highly likely because this is rq-dashboard, not rq-scheduler. :)

homeworkprod avatar Jun 30 '23 01:06 homeworkprod