Boilerplate Flask Dashboards
Reference codebase used in all Flask Dashboards provided by the AppSeed platform
All Flask Dashboards generated by AppSeed share the same codebase structure and features
Reference Codebase - Flask Apps Boilerplate
SQLite database, Flask-SQLAlchemy ORM
Session-Based auth flow (login, register)
Deployment scripts: Docker, Gunicorn / Nginx, Heroku
✨ Environment
To use the starter, Python3 should be installed properly in the workstation. If you are not sure if Python is installed, please open a terminal and type python --version
. Here is 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.
(Optional)
Docker
- a popular virtualization software
\
✨ Start the app in Docker
👉 Step 1 - Download the code from the GH repository (using
GIT
)
👉 Step 2 - Start the APP in
Docker
Visit http://localhost:5085
in your browser. The app should be up & running.
\
✨ Manual Build
Download the code
\
👉 Set Up for Unix
, MacOS
Unix
, MacOS
Install modules via
VENV
Set Up Flask Environment
Start the app
At this point, the app runs at http://127.0.0.1:5000/
.
\
👉 Set Up for Windows
Windows
Install modules via
VENV
(windows)
Set Up Flask Environment
Start the app
At this point, the app runs at http://127.0.0.1:5000/
.
\
✨ Manage App Users
Users
By default, the starter is not provided with users.
👉 Create Users
By default, the app redirects guest users to authenticate. In order to access the private pages, follow this set up:
Start the app via
flask run
Access the
registration
page and create a new user:http://127.0.0.1:5000/register
Access the
sign in
page and authenticatehttp://127.0.0.1:5000/login
\
✨ Codebase structure
The project is coded using a simple and intuitive structure presented below:
\
✨ Application Bootstrap Flow
The entry point of the project is the run.py
file where the project configuration is bundled. The most important files
that make the project functional are listed below:
run.py
is the application entry pointread the
Debug
flag from.env
import the
db
object fromapps
packageimport the
create_app
helper fromapps
Flask
application is built bycreate_app
If
Debug=True
- SQLite is used (development mode)If
Debug=False
- SQLite is used (production mode)
Configuration
is defined in
apps/config.py
\
✨ How the Flask App
object is constructed
Flask App
object is constructedThe file that constructs the core features of our application is apps/__init__.py
. The most important steps are listed below:
Invokes SQLAlchemy to build the
db
object.Using
SQLAlchemy
we can manage the database information with ease
Invokes LoginManager to build the
login_manager
object.login_manager
manage the authentication layer (login, logout, register)
Defines
create_app
helper that does the following:create the
Flask
app objectinjects
db
andlogin_manager
objectsloads the
configuration
register
default blueprints
:authentication
- handles the authentication routeshome
- serve all the pages saved in theapps/templates/home
folder
initialize the database
db.create_all()
- create all tables
\
✨ Application Blueprints
The codebase is built using a modular design that uses blueprints
. By default, the project comes with a two blueprints
👉 Authentication Blueprint
Definition:
apps/authentication
. The core files:
__init__.py
- defines the Blueprint objectmodels.py
- defines theUsers
modelforms.py
- defines theLogin
andRegistration
formsutils.py
- helpers used to hass and verify the passwordroutes
- manages the authentication routes:login
register
logout
👉 Home Blueprint
This module returns all pages saved in the templates/home
directory to authenticated users. In case a page is not found, a generic page is returned using a 404
HTTP error status.
\
✨ UI Assets and Templates
The project comes with a modern UI fully migrated and usable with Django Template Engine.
👉 Page Templates
All pages and components are saved inside the apps/templates
directory. Here are the standard directories:
templates/layouts
: UI masterpagestemplates/includes
: UI components (used across multiple pages)templates/accounts
: login & registration pagetemplates/home
: all other pages served via a generic routing byapps/home
app
\
👉 Static Assets
The static assets used by the project (JS
, CSS
, images
) are saved inside the apps/static/assets
folder. This path can be customized with ease via ASSETS_ROOT
variable saved in the .env
file.
How it works
.env
defines theASSETS_ROOT
variableapps/config.py
read the value ofASSETS_ROOT
and defaults to/static/assets
if not found:
All pages and components use the
config.ASSETS_ROOT
variable. Here is a sample extracted fromtemplates/layouts/base.html
:
At runtime, the href
property is resolved to /static/assets/css/style.css
based on the value saved in the .env
file:
\
✨ Customisation
👉 Set up the MySql Database
Note: Make sure your Mysql server is properly installed and accessible.
Step 1 - Create the MySql Database to be used by the app
Create a new MySql
databaseCreate a new user
and assign full privilegies (read/write)
Step 2 - Install
flask_mysqldb
package
Step 3 - Edit the
.env
to match your MySql DB credentials. Make sureDEBUG
is set toFalse
.
DB_ENGINE
:mysql
DB_NAME
: default value =appseed_db
DB_HOST
: default value =localhost
DB_PORT
: default value =3306
DB_USERNAME
: default value =appseed_db_usr
DB_PASS
: default value =pass
\
Here is a sample:
At this point, the app should use MySql
for the persistence layer.
\
👉 Static Assets for production
production
As explained in the Static Assets section, the assets are managed via:
apps/static/assets
- the folder whereJS
,CSS
, andimages
files are savedASSETS_ROOT
- environment variable, that defaults to/static/assets
if not defined
In production, the contents of the apps/static/assets
files should be copied to an external (public) directory and the ASSETS_ROOT
environment variable updated accordingly.
For instance, if the static
files are copied to https://cdn.your-server.com/datta-able-assets
, the .env
file should be updated as below:
🚀 Where to go from here
👉 Access the support page in case something is missing
👉 Use the App Generator to generate a new project
Last updated
Was this helpful?