Skip to content

A flask extension to support user view and manage redis with beautiful interface.

License

Notifications You must be signed in to change notification settings

vladislav-boyko-tstechpro/flask-redisboard

 
 

Repository files navigation

flask-redisboard

A flask extension to support user view and manage redis with beautiful interface.

Get Started

Installation is easy:

$ pip install flask-redisboard

Try to run

Just type command:

$ redisboard

Run in flask

Initialize the extension:

from flask_redisboard import RedisBoardExtension
...
board = RedisBoardExtension(app)

Also support for factory pattern:

from flask_redisboard import RedisBoardExtension
from flask import Flask

board = RedisBoardExtension()


def create_app():
    app = Flask(__name__)
    app.config['SECRET_KEY'] = '123456'
    board.init_app(app)
    app.run()


if __name__ == '__main__':
    create_app()

Now, you can go to 127.0.0.1:5000/redisboard

Preview

Screenshot Dashboard Screenshot Database
Screenshot Command Screenshot ServerInfo

About

A flask extension to support user view and manage redis with beautiful interface.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 47.3%
  • CSS 35.0%
  • HTML 17.7%