Skip to content
This repository has been archived by the owner on Dec 25, 2021. It is now read-only.

aiden0z/rmon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redis Monitor System Sample

Based on Flask + Restful API + Vue.js.

Start

Install python packages:

$ virtualenv venv
$ source venv/bin/activate
$ pip install -r requirements.txt

Then start project:

$ FLASK_APP=app.py flask run

Now you can access project at http://127.0.0.1:5000.

Testcase

You can use below command to run project testcase:

$ cd tests
$ py.test

The redis server should be running at 127.0.0.1:6379 without password before run testcase.