Dashing is a beautiful personal dashboard that can run on anything with a web browser. It's made entirely on HTML, CSS, and JavaScript. It runs on Flask and Python.
A fork of this project made by one of my best friends is accessible here. I'd reccomend you check it out if you want a standalone application with other features that Dashing might not include.
- You will need a server to run the dashboard on. This can be run on something even as small as a Raspberry Pi.
- Make sure you have Python3.7 or higher installed.
- Run
pip3 install flask
to install Flask. If you are on Windows you will need to runpy -m pip install flask
. - Download Dashing's code from Github.
- Unzip the .zip file and run
cd dashing
or whatever the folder that you downloaded is called. - Run
python3 server.py
orpy server.py
on windows. - If you are running the server on the same machine you want to display Dashing on, open your browser and type
127.0.0.1:5000
. If you are running it on a different machine, find the private IP address of the server and type that into your web browser along with:5000
at the end.