Can I integrate this inside flask?
amks1 opened this issue · 2 comments
amks1 commented
I want to make a route within flask to access the dashboard (mainly to use my own authentication). Do you have any documentation for this?
pranavgupta1234 commented
You can use rqmonitor as flask blueprint
from rqmonitor.bp import monitor_blueprint
and then can be mounted at some prefix
app.register_blueprint(monitor_blueprint, url_prefix="/rqmonitor")
with some other configurations you can get this working. More on flask blueprints here
amks1 commented