Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
]
},
"get_started/first_generation",
"get_started/cloud",
"changelog/index"
]
},
Expand Down Expand Up @@ -71,8 +72,6 @@
"icon": "gear",
"pages": [
"interface/settings/overview",
"interface/user",
"interface/credits",
"interface/settings/comfy",
"interface/settings/lite-graph",
"interface/appearance",
Expand All @@ -87,6 +86,14 @@
}
]
},
{
"group": "Account & Subscription",
"icon": "user",
"pages": [
"interface/user",
"interface/credits"
]
},
{
"group": "Tutorials",
"icon": "book",
Expand Down Expand Up @@ -603,6 +610,7 @@
]
},
"zh-CN/get_started/first_generation",
"get_started/cloud",
"zh-CN/changelog/index"
]
},
Expand Down Expand Up @@ -631,8 +639,6 @@
"icon": "gear",
"pages": [
"zh-CN/interface/settings/overview",
"zh-CN/interface/user",
"zh-CN/interface/credits",
"zh-CN/interface/settings/comfy",
"zh-CN/interface/settings/lite-graph",
"zh-CN/interface/appearance",
Expand All @@ -647,6 +653,14 @@
}
]
},
{
"group": "账户与订阅",
"icon": "user",
"pages": [
"zh-CN/interface/user",
"zh-CN/interface/credits"
]
},
{
"group": "教程示例",
"icon": "book",
Expand Down
177 changes: 177 additions & 0 deletions get_started/cloud.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,177 @@
---
title: "Comfy Cloud Onboarding"
description: "Get started with Comfy Cloud to run ComfyUI workflows in the cloud without local installation"
sidebarTitle: "Cloud"
icon: "cloud"
---

Comfy Cloud provides a hosted solution for running ComfyUI workflows without requiring local installation or GPU hardware. This guide will help you get started with Comfy Cloud.

## What is Comfy Cloud?

Comfy Cloud is a cloud-based platform that allows you to:

- Run ComfyUI workflows without local installation
- Access powerful GPU resources on-demand
- Share and collaborate on workflows
- Scale your AI generation workloads

## Prerequisites

Before getting started with Comfy Cloud, you'll need:

- A Comfy account (create one at [platform.comfy.org](https://platform.comfy.org))
- Credits for cloud compute (see [Credits](/interface/credits) for more information)

## Getting Started

### 1. Create an Account

Visit [platform.comfy.org](https://platform.comfy.org) and create an account using:

- Email
- Google
- GitHub

### 2. Access Comfy Cloud

Once logged in, you can access Comfy Cloud through:

- The web interface at [platform.comfy.org](https://platform.comfy.org)
- ComfyUI Desktop with cloud integration
- API access using your API key

### 3. Load a Workflow

You can start with:

- Pre-built workflow templates
- Your own custom workflows
- Community-shared workflows

### 4. Configure Cloud Resources

Select the appropriate GPU tier for your workflow:

- **Basic**: For simple workflows and testing
- **Standard**: For most production workflows
- **Premium**: For complex, high-resolution generations

### 5. Run Your Workflow

Click **Queue** to submit your workflow to the cloud. Your job will be:

1. Queued for processing
2. Assigned to available GPU resources
3. Executed in the cloud
4. Results returned to your account

## Cloud vs Local

| Feature | Comfy Cloud | Local Installation |
|---------|-------------|-------------------|
| Setup | No installation required | Requires setup and configuration |
| GPU | Access to high-end GPUs | Limited by your hardware |

Check warning on line 74 in get_started/cloud.mdx

View check run for this annotation

Mintlify / Mintlify Validation (dripart) - vale-spellcheck

get_started/cloud.mdx#L74

Did you really mean 'GPUs'?
| Storage | Cloud storage included | Uses local disk space |
| Scaling | Automatic scaling | Limited by local resources |
| Cost | Pay per use | One-time hardware cost |

## Managing Credits

Comfy Cloud uses a credit-based system:

- Credits are consumed based on compute time and resources used
- Purchase credits through your account dashboard
- Monitor usage in real-time
- Set spending limits to control costs

For detailed information about credits and pricing, see [Credits Management](/interface/credits).

## API Access

You can integrate Comfy Cloud into your applications using the API:

1. Generate an API key from your account settings
2. Use the API to submit workflows programmatically
3. Monitor job status and retrieve results

See [Account Management](/interface/user) for details on creating and managing API keys.

## Best Practices

<AccordionGroup>
<Accordion title="Optimize workflows for cloud execution">
- Use efficient nodes and models
- Batch similar operations
- Cache intermediate results when possible
</Accordion>

<Accordion title="Monitor your usage">
- Check credit consumption regularly
- Set up usage alerts
- Review job history for optimization opportunities
</Accordion>

<Accordion title="Secure your account">
- Use strong passwords
- Enable two-factor authentication
- Keep API keys secure
- Don't share credentials
</Accordion>

<Accordion title="Choose the right GPU tier">
- Start with lower tiers for testing
- Scale up for production workloads
- Consider batch processing for cost efficiency
</Accordion>
</AccordionGroup>

## Troubleshooting

<AccordionGroup>
<Accordion title="Workflow fails to execute">
- Verify all required models are available
- Check workflow compatibility with cloud environment
- Review error logs in job details
</Accordion>

<Accordion title="Slow execution times">
- Consider upgrading to a higher GPU tier
- Optimize workflow complexity
- Check for bottlenecks in your workflow
</Accordion>

<Accordion title="Credit issues">
- Verify sufficient credits in your account
- Check payment method is valid
- Contact support for billing questions
</Accordion>
</AccordionGroup>

## Next Steps

<CardGroup cols={2}>
<Card title="Account Management" icon="user" href="/interface/user">
Learn how to manage your account and API keys
</Card>

<Card title="Credits & Billing" icon="credit-card" href="/interface/credits">
Understand the credit system and manage your billing
</Card>

<Card title="API Nodes" icon="plug" href="/tutorials/api-nodes/overview">
Use API nodes to access cloud-based models
</Card>

<Card title="Tutorials" icon="book" href="/tutorials/basic/text-to-image">
Explore tutorials to learn ComfyUI workflows
</Card>
</CardGroup>

## Support

Need help with Comfy Cloud?

- Visit our [Discord community](https://discord.com/invite/comfyorg)
- Check the [troubleshooting guide](/troubleshooting/overview)
- Contact support through your account dashboard
Loading