Hello,
This article presents a simple Flask Dashboard starter generated by the AppSeed platform on top of SRTDash, a well-known free dashboard design crafted by BootstrapDash. For newcomers, Srtdash is a free Bootstrap 4 admin dashboard template. It is a perfect match for the website admin and web-apps. Srtdash has a modern design with a beautiful, clean and minimal look.
The Flask codebase provides a database, ORM, and a tested codebase out-of-the-box, and might help beginners (and not only) to start faster a admin dashboard in Flask.
Thanks for reading! The relevant links are below
- Flask Dashboard SRTDash, the product page
- Flask SRTDash Demo, the LIVE App deployment
- Support via Github (issues tracker) and Discord - 24/7 LIVE Service
- Flask Material PRO - a PREMIUM starter with material dashboard design
This super simple Flask Dashboard is provided with a basic set of features and deployment scripts for some well-known platforms and configurations: Docker, HEROKU, Gunicorn/Nginx stack - Full app features (extracted from README file):
- Modular design with Blueprints
- SQLite, PostgreSQL, SQLAlchemy ORM
- Alembic (DB schema migrations)
- Session-Based authentication (via flask_login)
- Deployment scripts: Docker, Gunicorn / Nginx
The logical further step is to learn how to build the project using the sources and a local workstation.
Environment
To use the stater, Python3 should be installed properly in the workstation. If you are not sure if Python is properly installed, please open a terminal and type python --version. The full-list with dependencies and tools required to build the app:
- Python3 - the programming language used to code the app
- GIT - used to clone the source code from the Github repository
- Basic development tools (g++ compiler, python development libraries ..etc) used by Python to compile the app dependencies in your environment.
For more information on how to set up your environment please access the resources listed below.
- How to set up Python
- Setup CentOS for development
- Setup Ubuntu for development
- Setup Windows for development
Build the app
To built and start the app locally, follow the steps:
Get the source code
- Download the ZIP from Github Repository
- Using GIT tool in the terminal to clone the source code
Change the current directory to source code directory
$ # Make sure you are running the commands INSIDE source code directory
$
$ # Create and activate a Virtualenv (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Install requirements
$ pip3 install -r requirements.txt
$
$ # Set the FLASK_APP environment variable
$ export FLASK_APP=run.py
$
$ # Run the application
$ flask run
$
$ # Access the app in browser: http://127.0.0.1:5000/At this point, we can visit the app in the browser http://127.0.0.1:5000/. By default, the app will redirect guest users to the login page. To access the private pages:
- Create a new user using the registration page
- Authenticate using the login page
App Codebase (simplified)
< PROJECT ROOT >
|
|-- app/ # Implements app logic
| |-- base/ # Base Blueprint - handles the authentication
| |-- home/ # Home Blueprint - serve UI Kit pages
| |
| __init__.py # Initialize the app
|
|-- requirements.txt # Development modules - SQLite storage
|-- requirements-mysql.txt # Production modules - Mysql DMBS
|-- requirements-pqsql.txt # Production modules - PostgreSql DMBS
|
|-- .env # Inject Configuration via Environment
|-- config.py # Set up the app
|-- run.py # Start the app - WSGI gateway
|
|-- ************************************************************************Flask SRTDash - App Screens
Srtdash comes with amazing features and assets. Bar, line, pie charts are integrated with Srtdash. Moreover, It contains lots of reusable UI components and plugins. Grid system, drop-down, accordions, list groups, modal, form are some significant components. Easy to customize and well-commented codes are in the bundle to make alteration smooth.
Flask SRTDash - Dashboard Widgets
Flask SRTDash - Line Charts
Flask SRTDash - Invoice page
Flask SRTDash - Login page
Thanks for reading! For more free starters, feel free to access the AppSeed dashboard.
Where to go from here? Go PRO with a premium starter - Flask Material PRO
Material Dashboard Pro is a Premium Material Bootstrap 4 Admin with a fresh, new design inspired by Google's Material Design. It is based on the popular Bootstrap 4 framework and comes packed with multiple third-party plugins. All components are built to fit perfectly with each other, while aligning to the material concepts - Design provided by Creative-Tim.