

Next, open your favorite editor and create a hello.py file.

Type this into terminal: mkdir python_app & cd $_/ Building the appįirst, create a project directory (folder) and cd into it. For this exercise, minimal knowledge of the framework is necessary. To create the application, we will use Flask, a microframework for Python. To follow along with the tutorial, a few things are required: Create a simple Python application (with Flask).We will use a Python application to demonstrate building a CI pipeline. In this article, I will guide you through establishing a CI/CD process using GitHub. This allows small incremental updates that reach your users faster, in line with Agile software development philosophy. Continuous delivery (CD) expands on CI by automating releases of these branches or the main branch. This ensures that a codebase does not get updated with changes that could break something. Creating a simple Python application (with Flask)Ĭontinuous integration (CI) involves build and test automation of feature branches before they are merged to the main Git branch in a project.
