Flask Blueprints
We will add configuration to the Agile Estimator application, allowing us to run it in dev, test or production modes, and introduce Flask Blueprints.
We will add configuration to the Agile Estimator application, allowing us to run it in dev, test or production modes, and introduce Flask Blueprints.
Most applications are backed by a database. In this post we will start to add a database to the estimator application using SQLAlchemy to access the data.
Getting an application from development servers into production can often be an afterthought for developers. Use Docker from early on to ease this step.
This post continues the development of an application using Flask. Today we will add some Rest endpoints to the anonymous estimator.
Flask is a Python framework for creating lightweight web sites and API endpoints. This post is about my first experience using Flask.