Flask iDashboard Design
Admin dashboard generated by AppSeed in Flask Framework.
iDashboard is a free, lightweight admin dashboard template that’s built on top of Bootstrap & Apple’s human interface guidelines. Brilliant design meeting clean code, it’s become quite popular in the dev community. Grab this epic free template today and take your app to a whole new level - Design provided by YooKits.
Features
- DBMS: SQLite, PostgreSQL (production)
- DB Tools: SQLAlchemy ORM, Alembic (schema migrations)
- Modular design with Blueprints, simple codebase
- Session-Based authentication (via flask_login), Forms validation
- Deployment scripts: Docker, Gunicorn / Nginx, Heroku
- Support via Github and Discord.
Links
- Flask iDashboard - Product page
- Flask iDashboard Demo - LIVE demo
- Flask Tutorial - Getting started with Flask
PRO versions include Premium UI Kits, Lifetime updates and 24/7 LIVE Support (via Discord)
Flask Datta PRO | Flask Soft PRO | Flask Volt PRO |
---|---|---|
$ # Get the code
$ git clone https://github.com/app-generator/flask-idashboard-free.git
$ cd flask-idashboard-free
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv env
$ # .\env\Scripts\activate
$
$ # Install modules - SQLite Database
$ pip3 install -r requirements.txt
$
$ # OR with PostgreSQL connector
$ # pip install -r requirements-pgsql.txt
$
$ # Set the FLASK_APP environment variable
$ (Unix/Mac) export FLASK_APP=run.py
$ (Windows) set FLASK_APP=run.py
$ (Powershell) $env:FLASK_APP = ".\run.py"
$
$ # Set up the DEBUG environment
$ # (Unix/Mac) export FLASK_ENV=development
$ # (Windows) set FLASK_ENV=development
$ # (Powershell) $env:FLASK_ENV = "development"
$
$ # Start the application (development mode)
$ # --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 dashboard in browser: http://127.0.0.1:5000/
$ # Create a new user and authenticate
Note: The app is not provided with default users - Please create a new user before using the app
The app is provided with a basic configuration to be executed in Docker, Gunicorn, and Waitress.
Docker execution
The application can be easily executed in a docker container. The steps:
Get the code
$ git clone https://github.com/app-generator/flask-idashboard-free.git
$ cd flask-idashboard-free
Start the app in Docker
$ sudo docker-compose pull && sudo docker-compose build && sudo docker-compose up -d
Visit http://localhost:5005
in your browser. The app should be up & running.
Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX.
Install using pip
$ pip install gunicorn
Start the app using gunicorn binary
$ gunicorn --bind 0.0.0.0:8001 run:app
Serving on http://localhost:8001
Visit http://localhost:8001
in your browser. The app should be up & running.
Waitress (Gunicorn equivalent for Windows) is meant to be a production-quality pure-Python WSGI server with very acceptable performance. It has no dependencies except ones that live in the Python standard library.
Install using pip
$ pip install waitress
Start the app using waitress-serve
$ waitress-serve --port=8001 run:app
Serving on http://localhost:8001
Visit http://localhost:8001
in your browser. The app should be up & running.
- Free support via eMail < support @ appseed.us > and Github issues tracker
- 24/7 Live Support via Discord for paid plans and commercial products.
- Flask iDashboard Free - Product page
- Flask Framework - Offcial website
- Flask Dashboard - Open-Source Boilerplates - A popular article published on Dev.to platform
- Flask Dashboard - Index provided by Admin-Dashboards.com
Flask iDashboard Design - Provided by AppSeed App Generator.