Quick Start Guide
Get started with ComfyUI in minutes. This guide will help you deploy your first application.
Prerequisites
- • Node.js 18 or later
- • npm or yarn package manager
- • A ComfyUI account
Installation
npm install -g @comfyui/cli
Authentication
comfy login
Create a New Project
comfy create my-app
cd my-app
Deploy Your App
comfy deploy
Your app will be available at https://my-app.comfyui.app
Next Steps
Example: Deploy a Next.js App
# Create a new Next.js project
npx create-next-app@latest my-nextjs-app
cd my-nextjs-app
# Initialize ComfyUI
comfy init
# Deploy globally
comfy deploy --prod