hemal335 / metricDashboard

This is dashboard is build using python and Flask

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

metricdashboard

This metric Dashboar is web application to displayed metric table and grpah using Python-Flask.

Dashboard Features:

  • SQLite database
  • SQLAlchemy ORM
  • Session-Based authentication flow (login, register)

Build from sources

$ # Virtualenv modules installation (Unix based systems)
$ virtualenv --no-site-packages env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv --no-site-packages env
$ # .\env\Scripts\activate
$ 
$ # Install requirements
$ pip3 install -r requirements.txt


$ # Set up the DEBUG environment
$ # (Unix/Mac) export FLASK_ENV=development
$ # (Windows) set FLASK_ENV=development
$ # (Powershell) $env:FLASK_ENV = "development"
$
$ # Run the application
$ # --host=0.0.0.0 - expose the app on all network interfaces (default 127.0.0.1)
$ # --port=5000    - specify the app port (default 5000)  
$ flask run --host=0.0.0.0 --port=5000
$
$ # Access the app in browser: http://127.0.0.1:5000/

About

This is dashboard is build using python and Flask

License:MIT License


Languages

Language:CSS 55.9%Language:HTML 20.9%Language:SCSS 18.2%Language:JavaScript 3.8%Language:Python 1.1%