Deploy Vercel Workflows Chat
A Chat(Streaming) example using vercel workflows
vercel-workflow
Just deployed
Just deployed
/var/lib/postgresql/data
workflow-logs
Just deployed
Deploy and Host Vercel Workflow on Railway
Vercel Workflow is a framework for building durable applications, AI agents, and long-running backends in TypeScript. Utilizing use workflow and use step directives, it enables functions to automatically pause, resume, manage state, and retry operations across distributed systems without relying on external queues or state machines.
About Hosting Vercel Workflow
While Vercel natively provides a fully managed infrastructure for Workflows, deploying a self-hosted version of the open-source Workflow SDK on Railway gives you complete control over your execution environment. Hosting this on Railway involves provisioning a Node.js runtime and an associated PostgreSQL database to manage state persistence, event histories, and queueing operations securely. Railway's continuous deployment pipeline will automatically build and scale your durable functions. This setup allows your workflows to securely handle long-running background operations, event listeners, and agentic loops completely independent of standard serverless runtime timeout limits.
Common Use Cases
- Building autonomous AI agents that maintain long-term conversation histories, handle tool calls iteratively, and gracefully survive process interruptions or API timeouts.
- Orchestrating complex multi-step data pipelines and background jobs, such as processing user uploads, fetching remote APIs, or coordinating batch email distributions.
- Creating stateful event-driven systems like Slack bots, webhooks, or fulfillment services that require suspending and resuming execution based on external triggers or deliberate sleep timers.
Dependencies for Vercel Workflow Hosting
- Node.js (v18+): Required for running the Workflow SDK and executing the core JavaScript/TypeScript application logic.
- PostgreSQL: Essential for acting as the single source of truth for the event log, execution state, and managed persistence layer.
Deployment Dependencies
- Railway PostgreSQL for instant database provisioning.
- Vercel Workflow Documentation to understand platform concepts and features.
- Workflow OSS SELFHOST as a foundational starting point for a visual execution engine.
Implementation Details
Here is a brief example demonstrating how a basic durable workflow function is constructed using the core SDK directives:
// app/workflows/order-workflow.ts
export async function processOrderWorkflow(orderId: string) {
// Marks the function as a stateful workflow that can pause/resume
"use workflow";
// Isolates the task; if it fails, only this step is retried
const inventory = await checkInventory(orderId);
// Workflows can suspend safely and maintain variables indefinitely
const paymentStatus = await processPayment(orderId, inventory);
return { status: "success", paymentStatus };
}
async function checkInventory(id: string) {
// The 'use step' directive handles automatic retries and observability
"use step";
return await db.inventory.findUnique({ where: { id } });
}
Why Deploy Vercel Workflow on Railway?
Railway is a singular platform to deploy your infrastructure stack. Railway will host your infrastructure so you don't have to deal with configuration, while allowing you to vertically and horizontally scale it.
By deploying Vercel Workflow on Railway, you are one step closer to supporting a complete full-stack application with minimal burden. Host your servers, databases, AI agents, and more on Railway.
Template Content
vercel-workflow
iqbalexperience/vercel-workflow-chat-exampleOPENAI_API_KEY
Add openai apikey for chat example.
workflow-logs
iqbalexperience/vercel-workflow-chat-example