

If you need a powerful yet simple way to build, run, and manage LLM-powered workflows, FlowiseAI is one of the best open-source tools you can use. It provides a drag-and-drop interface for chaining together prompts, models, APIs, and logic, helping you create production-ready AI apps without writing boilerplate code.
With Northflank, you can deploy FlowiseAI in minutes using a one-click template or set everything up manually. Northflank takes care of scaling, networking, and infrastructure while you focus on building with Flowise.
Before you begin, create a Northflank account.
- Deploying FlowiseAI with a one-click template on Northflank
- Deploying FlowiseAI manually on Northflank
What is Northflank? Northflank is a developer platform that makes it easy to build, deploy, and scale applications, databases, jobs, and even GPU workloads. It abstracts Kubernetes with smart defaults, giving you production-ready deployments without losing flexibility.
You can launch FlowiseAI on Northflank in just a few minutes using the ready-made template. This option is ideal if you want to quickly spin up FlowiseAI or demo the platform without performing a manual setup.
The FlowiseAI deployment on Northflank includes:
- 1 addon: PostgreSQL (for storing workflows and configs)
- 1 secret group for managing environment variables (API keys, database credentials)
- Deployment of FlowiseAI from the Docker image:
flowiseai/flowise:latest
- Visit the FlowiseAI template on Northflank.
- Click “Deploy”.
- Northflank will automatically:
- Create a project, database, secret group, and service
- Deploy FlowiseAI with the required configuration
- Expose a public URL for your app
- Once live, open the URL to access the Flowise builder UI in your browser.
Note: You’ll still need to add API keys for your LLM providers (e.g., OpenAI, Anthropic, Hugging Face).
If you want more flexibility or need to customize your setup, you can deploy FlowiseAI manually. This approach provides you with complete control over configuration and integration.
Note: You can also customise Northflank's one-click deploy templates.
Log in to your Northflank dashboard, click the “Create new” button (+ icon) in the top right corner of your dashboard. Then, select “Project” from the dropdown.
Projects serve as workspaces that group together related services, making it easier to manage multiple workloads and their associated resources.
You’ll need to fill out a few details before moving forward.
-
Enter a project name, such as
flowiseai-project
and optionally pick a color for quick identification in your dashboard. -
Select Northflank Cloud as the deployment target. This uses Northflank’s fully managed infrastructure, so you don’t need to worry about Kubernetes setup or scaling.
(Optional) If you prefer to run on your own infrastructure, you can select Bring Your Own Cloud and connect AWS, GCP, Azure, or on-prem resources.
-
Choose a region closest to your users to minimize latency for calendar syncing and video calls.
-
Click Create project to finalize the setup.
Inside your project, go to the Addons tab at the top menu and click “Create new addon”. Then, select PostgreSQL as the Addon type, give it a descriptive name such as flowiseai-db
. Select your preferred version, and choose a compute plan size.
- If you’re testing or experimenting, the smallest option is cost-effective and sufficient.
- For production, we recommend starting with
nf-compute-50
. This provides more resources and stability, ensuring FlowiseAI runs reliably under real workloads.
Once you’ve configured the settings, click Create addon to provision your database.
Next, navigate to the Secrets tab and click "Create Secret Group." Name it something easy to recognize, such as flowiseai-secrets
. This group will hold all the environment variables required by FlowiseAI. You can find the full list of supported variables in the FlowiseAI docs.
If you don't want to go through the stress of manually configuring or searching for environment variables to use, you can use the already configured ones below:
FLOWISE_PASSWORD={update this}
FLOWISE_USERNAME={update this}
DATABASE_TYPE="postgres"
Notes about these values:
- The
FLOWISE_PASSWORD
andFLOWISE_USERNAME
should be updated with the secure credentials you want to use for accessing the FlowiseAI interface - The
DATABASE_TYPE
is set to "postgres" to work with the PostgreSQL database we created earlier
Link the PostgreSQL addon to your secret group
Northflank addons (like PostgreSQL) expose connection details (username, password, etc.). Instead of manually copying these values into your secrets, you can link the addon directly to your secret group. This way, whenever the addon rotates credentials, your service automatically receives the updated values.
- Under the Linked addons section, click “Configure” to map
HOST
to the aliasDATABASE_HOST
. - Map
PORT
toDATABASE_PORT
. - Map
USERNAME
toDATABASE_USER
. - Map
PASSWORD
toDATABASE_PASSWORD
. - Map
DATABASE
toDATABASE_NAME
. - Map
TLS_ENABLED
toDATABASE_SSL
.
Here we’re not inventing new values, we’re just telling Northflank to feed the Postgres addon’s host and URI into the environment variable names your service requires.
Finally, click Create secret group to save everything.
Within your project, navigate to the Services tab in the top menu and click ’Create New Service’. Select Deployment and give your service a name such as flowiseai-app
.
For the deployment source, choose External image and enter the official FlowiseAI Docker image: flowiseai/flowise:latest
.
Select compute resources
Choose the compute size that best matches your workload:
- Small plans are fine for testing or lightweight usage.
- Larger plans are recommended for production, as FlowiseAI can be resource-intensive under real-world traffic.
The flexibility to adjust resources later means you can start small and scale up as your scheduling needs grow.
Set up a port so your app is accessible:
- Port:
3000
- Protocol:
HTTP
- Public access: enable this to let people access your scheduling app from the internet
Northflank will automatically generate a secure, unique public URL for your service. This saves you from having to manage DNS or SSL certificates manually.
Deploy your service
When you’re satisfied with your settings, click “Create service.” Northflank will pull the image, provision resources, and deploy FlowiseAI.
Once the deployment is successful, you’ll see your service’s public URL at the top right corner, e.g.: p01--flowiseai-app--lppg6t2b6kzf.code.run
Deploying FlowiseAI on Northflank gives you a production-ready way to run your AI workflow builder without worrying about Kubernetes, networking, or scaling.
Whether you choose the one-click template for speed or the manual setup for full control, Northflank provides the infrastructure while FlowiseAI powers your LLM-driven apps.
Together, they let you prototype, deploy, and scale AI workflows all from a simple, developer-friendly platform.