How to go LIVE with a Flask project using Render Deployment Platform
This page explains how to go live with a Flask project on Render, a popular deployment platform. For newcomers, Render supports the deployment for all major languages, Free Certificates, DDoS protection, and auto deploys from GitHub.
The VIDEO version - published on YouTube
How to deploy Flask on Render Platform
Render Account Creation
The Sign UP is provided via classic Email and Social Authentication for well-known providers like GitHub, GitLab, or Google. Once the sign-up process is finished, the user is redirected to the dashboard.
Flask Render Deployment - Sign UP page
Create a new project
All projects that use a dynamic language during runtime (Python, NodeJs) should be created as web services. This option can be found in the navigation bar, as shown below:
Flask Render Deployment - Creat Web Service
Link GitHub Repository
The next step is to associate a Flask project with the newly created web service. Render support account linkage with external platforms like GitHub, GitLab, and BitBucket. In our demonstration, an open-source repository is used as a working sample.
β Start Command: the entry point, usually managed by Gunicorn
A visual representation of the above settings used to deploy the project can be found below:
Flask Render Deployment - Project Settings
The next step is to specify the billing plan for the project. Render platform, at the moment this material is edited, provides a free plan only for static sites built with React, Vue, Next, and all other frameworks.
Flask Render Deployment - Paid Pricing Plan
The last step in this tutorial is to expand the "Advanced" section and provide a few Environment variables required by Flask and the Stripe feature.
β Debug Flag: False (the recommended value in production)
β SECRET_KEY variable: used to sign session secrets
β SERVER_ADDRESS: Used by Stripe to redirect after a payment
β Stripe Secrets: PRIVATE and PUBLIC keys (provided by Stripe)
An important aspect of the build is the automatic deployment that is enabled by default. In this sample, a manual build is used, just to have full control over the deployment flow.
Flask Render Deployment - Auto-Deploy Option
Flask Render Deployment - First Deployment
Trigger Manual Deployment
The LIVE version of the project can be updated and even rollbacked anytime with ease via the UI. Here are the steps required by the LIVE update:
β Access Manual Deploy Option
β Select Deploy a specific commit
β Add the commit HASH to be used (provided by Github)