Skip to main content

Flask Deployment

Deploy Python Flask applications in a production-ready environment on KloudBean.

Overview

On KloudBean, you get a complete production-ready stack to build and host high-performance Flask applications.

You get:

  • Git integration to pull your code on the server
  • SSH access to the server to run commands manually and using ADM tool for quick deployment
  • File Manager access to add, update and manage files with ease
  • Optimized and configured Gunicorn for serving your Flask application

Launching New Flask Application

note

If you already have a server and want to launch an app on it, go to Applications → Add Application and add a Flask app on an existing server.

In this example, we will create a brand new server.

In order to launch your first Flask app on a new server, navigate to the server provision page:

  1. Select Cloud Provider (your choice)
  2. Select Application (Flask)
  3. Select Datacenter with nearest location
  4. Add Application Name
  5. Add Server Name
  6. Select Server size depending on needs (for Flask build minimum recommended size is 2-4GB)

Launch Flask Application

Click on Launch button and proceed with the payment process (trial or payment).

Once payment is completed, server with Flask app provisioning will be initiated.

Wait for a while; it will take 5-7 minutes to create your server, configure and deploy a high-performance web stack.

By default, on a new server you will get the following stack versions:

  • Python > 3.11
  • Flask (latest)
  • Gunicorn
  • MariaDB > 10.6 (optional)

Accessing Application Administration

Once your server is ready, in order to access your Flask app, select "Apps" from the header menu to go to the Applications page.

On this page, you will see your application in active status.

Application Status

Click on it to navigate to "Application Administration" > "Access" section.

On this section, you will see:

  1. Application default access URL
  2. Server public address to point your custom domain to it

Application Access

Deploy Your Code Via Git

The next step is to deploy your code.

In order to deploy your code, navigate to the "Code Delivery" tab.

Here, on the first tab → "Git Deployment":

  1. Select your preferred "Git Connection Mode"
  2. Connect GitHub using OAuth or copy the SSH public key and add it to your SCM provider (GitHub, GitLab, Bitbucket)

Enable Git Integration

  1. Copy your repo URL and add it here in "Git Repository URL", select branch and "Clone Repository"

Clone Repository

In this example, we're going to deploy an example Flask app:

https://github.com/helloflask/flask-examples.git

Read the detailed guide on connecting Git.

Once the repository is cloned, review and update the Runtime Configuration before starting deployment.

Update Runtime Configurations

Once the repository is cloned, review and update the runtime configurations.

Flask Deploy Step 3

Configure the following fields based on your application requirements:

  • App Directory: Relative path (inside your repository) where your Flask application code lives.

    • Use / if your app is at repo root.
    • Use a subfolder path like backend if your Flask project is inside that directory.
  • APP_NAME: Gunicorn app import target in the format <module>:<flask_app_variable>.

    • Example: app:app means Gunicorn imports app.py and looks for app object.
    • If your entry file is in a package/folder, use dotted module path, for example myservice.main:app.
  • Worker: Number of Gunicorn worker processes to run your Flask app.

    • More workers improve concurrency, but also use more RAM/CPU.
    • Start with 2-4 for small apps, and scale up based on traffic and server size.
    • 8 is a common medium/high-capacity default for production servers.

Once these configurations are finalized, click the "Pull & Deploy" button to initiate the deployment process.

When you click "Pull & Deploy", KloudBean will initiate the build process automatically by doing the following at the backend:

  • Take latest repo pull
  • Enabling bean.conf for configuration like Node version, app source directory, and build command
  • Setting required Node version
  • Installing packages
  • Making build
  • Deploying it to web root directory

Adding Environment (.env) File

If you need to add or update .env file, you can do it from UI or using File Manager or optionally using shell.

  1. Navigate to the " Runtime Configuration" section and click the "Environment Variables" button to add your vars.

Flask Env Step 1

It will open variables key/value editor. Add your required environment variables. Like in this case, I'm going to add environment variables:

APP_URL=https://flask-232200304.kloudbeansite.com
DB_HOST=localhost
DB_NAME=kb_ms3u701nun
DB_USERNAME=kb_ms3u701nun
DB_PASSWORD=31vYF9Dc65gHbV742m
  1. Select Paste .env Content tab and paste your .env file content. You can also manually add key/value pair. Flask Env Step 2
  2. Once added, click Convert to Key/Value, It will convert it to your key/value. Flask Env Step 2
  3. Once updated, click on the "Save Variables" button of the editor, and it will be saved.

Env file path: This path represent there .env file will be saved. If you have any subdirectory (custom app root directory) then .env will be saved in that path.

After saving this, now when you run Build by CI/CD or by manually triggering "Pull & Deploy", your build process will start.

In order to get database access credentials, read the detailed guide on Viewing Database Credentials.

Viewing Build Logs

If you see your build failed or you need to see build and installation logs, click on your current build and a prompt will open to view the logs.

View Build Logs

Once your application is started, you can access it from the access URL:

"Application Administration" → Access → Access URL

If you are seeing 503, that means your application is not up and has some errors.

In order to view application logs:

  • You can view logs using File Manager
  • Or by SSH into the server

Go to directory: /home/admin/hosted-sites/<app_system_user>/app-logs

note

Important: It is important to check your application logs if your site is responding with a 503 gateway error. It shows that the application is not running.

In this directory, application logs are being added in the following log files:

  • app.info.log → information logs
  • app.error.log → error logs

You can open these files using File Manager to view the errors.

Deployment Using ADM Tool

Application Deployment Manager (ADM) is one of KloudBean's features that enables you to deploy your app quickly by just executing one command. It supports all Flask and Python-based applications.

In order to perform deployment using the ADM tool, you have to access your server using shell.

Read the detailed guide on how to SSH server on KloudBean.

Optionally Enable Python Virtual Environment

When you launch any Python-based framework on KloudBean, you get automatically configured a virtual Python environment with each app. You don't have to manually create one.

In order to enable the virtual environment, run this command:

source /home/admin/hosted-sites/<app_system_user>/venv_<app_system_user>/bin/activate

And your virtual environment will be activated.

Activate Virtual Environment

Once you are connected to the server, run the following ADM command:

sudo adm

or

sudo adm <app_system_user>

→ to directly execute for the required application.

ADM Command

If you run this command without app_system_user, then you will have to select the app by providing its number in the prompt and click hit enter.

It will start the deployment process with the logs and progress details on the shell screen.

ADM Deployment

note

Information: While executing deployment through ADM, you will see the port as well to get to know on which port the app is running.

Handling Build Errors

If you are seeing the build has failed, you can see build logs.

While executing ADM, you might see the app failed. Carefully watch the error and try to fix it. For example, in this case, you might face this error:

× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [3 lines of output]
/tmp/pip-build-env-1red30to/overlay/lib/python3.11/site-packages/setuptools/_distutils/dist.py:289: UserWarning: Unknown distribution option: 'test_suite'
warnings.warn(msg)
error in jsmin setup command: use_2to3 is invalid.
[end of output]

This type of error typically occurs when a package in your requirements.txt has compatibility issues with the current Python version or setuptools. To fix this:

  1. Update the problematic package: Check if there's a newer version of the package that's compatible with Python 3.11
  2. Remove incompatible packages: If the package is not essential, consider removing it or finding an alternative
  3. Pin package versions: Specify compatible versions in your requirements.txt to avoid conflicts
  4. Update setuptools: Ensure you're using a recent version of setuptools in your requirements

Once the error is fixed, then run the build again using "Pull & Deploy" or using the ADM tool from shell.

Next Steps