Files
wild-cloud/docs/guides/app-workflow.md
Paul Payne 364c8c3da8 Add documentation management and reorganize scaffold docs
- Add wild-setup-docs command to copy documentation to cloud projects
- Move node setup guide from scaffold to main docs/guides/
- Add app workflow guide to main docs/guides/
- Update cluster installation scripts to use standard env initialization
2025-07-06 03:19:12 -07:00

1.2 KiB

Wild-Cloud App Workflow

The Wild-cloud app workflow consists of three steps:

  1. Fetch - Download raw app templates to cache
  2. Config - Apply your local configuration to templates
  3. Deploy - Deploy configured app to Kubernetes

Commands

To list all available apps:

wild-apps-list

To fetch an app template to cache:

wild-app-fetch <app>

To apply your configuration to a cached app (automatically fetches if not cached):

wild-app-config <app>

To deploy a configured app to Kubernetes:

wild-app-deploy <app>

Quick Setup

For a complete app setup and deployment:

wild-app-config <app>  # Fetches if needed, then configures
wild-app-deploy <app>  # Deploys to Kubernetes

App Directory Structure

Your wild-cloud apps are stored in the apps/ directory. You can change them however you like. You should keep them all in git and make commits anytime you change something. Some wild commands will overwrite files in your app directory (like when you are updating apps, or updating your configuration) so you'll want to review any changes made to your files after using them using git.