All Projects → app-generator → flask-dashboard-sleek

app-generator / flask-dashboard-sleek

Licence: MIT License
Flask Dashboard - Sleek Design | AppSeed

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to flask-dashboard-sleek

flask-dashboard-tabler
Flask Dashboard - Tabler Design | AppSeed
Stars: ✭ 19 (-9.52%)
Mutual labels:  appseed, flask-dashboard
flask-soft-ui-dashboard
Soft UI Dashboard - Open-source Flask Dashboard | AppSeed
Stars: ✭ 113 (+438.1%)
Mutual labels:  appseed, flask-dashboard
flask-dashboard-atlantis
Flask Atlantis Lite - Open-Source Flask Seed Project | AppSeed
Stars: ✭ 16 (-23.81%)
Mutual labels:  appseed, flask-dashboard
flask-dashboard-modular-admin
Flask Dashboard - Modular Admin Design | AppSeed
Stars: ✭ 53 (+152.38%)
Mutual labels:  appseed, flask-dashboard
fullstack-flask-react-material-design
Flask React - Built with Automation Tools | AppSeed App Generator
Stars: ✭ 27 (+28.57%)
Mutual labels:  appseed
html-parser
Html Parser - Html to Pug, Jinja2, Blade Converter | AppSeed
Stars: ✭ 40 (+90.48%)
Mutual labels:  appseed
material-dashboard-django
Material Dashboard - Django Template | Creative-Tim
Stars: ✭ 52 (+147.62%)
Mutual labels:  appseed
static-site
Static Sites - Open-Source and Paid | AppSeed App Generator
Stars: ✭ 17 (-19.05%)
Mutual labels:  appseed
flask-adminkit
Flask Dashboard - AdminKit Bootstrap 5 | AppSeed
Stars: ✭ 14 (-33.33%)
Mutual labels:  appseed
django-corona-dark
Django Dashboard - Corona Dark | AppSeed
Stars: ✭ 20 (-4.76%)
Mutual labels:  appseed
django-now-ui-dashboard
Django Dashboard - Now UI Design | AppSeed
Stars: ✭ 15 (-28.57%)
Mutual labels:  appseed
django-soft-ui-design
Soft UI Design System - Django Starter | AppSeed
Stars: ✭ 58 (+176.19%)
Mutual labels:  appseed
material-kit-react
React Material Kit - Built with Automation Tools | AppSeed App Generator
Stars: ✭ 18 (-14.29%)
Mutual labels:  appseed
django-material-kit
Django Boilerplate - Material Kit Design | AppSeed
Stars: ✭ 36 (+71.43%)
Mutual labels:  appseed
black-dashboard-flask
Black Dashboard - Flask Template | Creative-Tim
Stars: ✭ 20 (-4.76%)
Mutual labels:  flask-dashboard
laravel-react-purity-dashboard
React Laravel - Purity Dashboard (Open-Source) | AppSeed
Stars: ✭ 30 (+42.86%)
Mutual labels:  appseed
flask-atlantis-dark
Atlantis Lite - Flask (Dark Version) | AppSeed
Stars: ✭ 116 (+452.38%)
Mutual labels:  appseed
react-material-kit
React Material Kit - Built with Automation Tools | AppSeed App Generator
Stars: ✭ 17 (-19.05%)
Mutual labels:  appseed
black-dashboard-django
Black Dashboard - Open-source Django Template | Creative-Tim
Stars: ✭ 61 (+190.48%)
Mutual labels:  appseed
django-datatables-sample
Django - Datatables Sample | AppSeed
Stars: ✭ 47 (+123.81%)
Mutual labels:  appseed

Flask Dashboard Sleek Design

Open-source Flask Dashboard generated by AppSeed op top of a modern design. Sleek admin dashboard delivers a bunch of responsive, customizable, and reusable components you need to create modern, beautiful, responsive apps - Design provided by Abdus.


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


Want more? Go PRO!

PRO versions include Premium UI Kits, Lifetime updates and 24/7 LIVE Support (via Discord)

Flask Datta PRO Flask Soft PRO Flask Volt PRO
Flask Datta PRO Flask Soft PRO Flask Volt PRO


Flask Dashboard Paper Pro - Gif animated intro.


How to use it

$ # Get the code
$ git clone https://github.com/app-generator/flask-dashboard-sleek.git
$ cd flask-dashboard-sleek
$
$ # 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/

Deployment

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/priv-flask-dashboard-sleek.git
$ cd priv-flask-dashboard-sleek

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


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


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.


Credits & Links


What is Flask

Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. It began as a simple wrapper around Werkzeug and Jinja and has become one of the most popular Python web application frameworks.


What is a dashboard

A dashboard is a set of pages that are easy to read and offer information to the user in real-time regarding his business. A dashboard usually consists of graphical representations of the current status and trends within an organization. Having a well-designed dashboard will give you the possibility to act and make informed decisions based on the data that your business provides - definition provided by Creative-Tim - Free Dashboard Templates.


Sleek Dashboard

Sleek admin dashboard delivers a bunch of responsive, customizable, and reusable components you need to create modern, beautiful, responsive apps.



Flask Dashboard Sleek Design - Provided by AppSeed App Generator.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].