How to Configure Python projects
This document will explain how to deploy a `flask` or any other WSGI-based python app on Pandastack
Follow the steps below to deploy a python based application on Pandastack:
Go to your dashboard Visit dashboard.pandastack.io/projects and click “Add New Project”.
Select your repository Choose the GitHub repository that contains your Node.js application.
Enable container deployment Toggle the “Run as Container” option to run your app inside a secure container environment.
Configure the deployment Fill in the project setup form based on your application’s structure:
Set the environment variables (e.g.,
PORT
)Define build/start commands if needed
Choose your runtime environment (e.g.,
Node.js 18
) by definingNODE_VERSION
ENV.
Allocate resources Select CPU and memory as per your app’s requirements.
Deploy your app Click “Deploy Container Site”. The build process will begin, and logs will stream in real time.
📦 After Deployment
Once deployed, your app will be live on a secure Pandastack URL. You can manage your deployment, environment variables, and logs from the dashboard.
Last updated