Update terminology from "Wild-Cloud" to "Wild Cloud" across scripts and documentation for consistency

This commit is contained in:
2025-07-06 12:18:10 -07:00
parent 24e3b64077
commit d1912af913
44 changed files with 103 additions and 79 deletions

View File

@@ -45,7 +45,7 @@ if [ -z "${APP_NAME}" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1
@@ -126,7 +126,7 @@ if [ -f "${MANIFEST_FILE}" ]; then
# Ensure .wildcloud/secrets.yaml exists # Ensure .wildcloud/secrets.yaml exists
if [ ! -f ".wildcloud/secrets.yaml" ]; then if [ ! -f ".wildcloud/secrets.yaml" ]; then
echo "# Wild-Cloud Secrets Configuration" > .wildcloud/secrets.yaml echo "# Wild Cloud Secrets Configuration" > .wildcloud/secrets.yaml
echo "# This file contains sensitive data and should NOT be committed to git" >> .wildcloud/secrets.yaml echo "# This file contains sensitive data and should NOT be committed to git" >> .wildcloud/secrets.yaml
echo "# Add this file to your .gitignore" >> .wildcloud/secrets.yaml echo "# Add this file to your .gitignore" >> .wildcloud/secrets.yaml
echo "" >> .wildcloud/secrets.yaml echo "" >> .wildcloud/secrets.yaml

View File

@@ -19,7 +19,7 @@ while [[ $# -gt 0 ]]; do
-h|--help) -h|--help)
echo "Usage: $0 <app_name> [--force] [--dry-run]" echo "Usage: $0 <app_name> [--force] [--dry-run]"
echo "" echo ""
echo "Delete a Wild-Cloud app and all its resources." echo "Delete a Wild Cloud app and all its resources."
echo "" echo ""
echo "Options:" echo "Options:"
echo " --force Skip confirmation prompts" echo " --force Skip confirmation prompts"
@@ -61,7 +61,7 @@ if [ ! -d "apps/${APP_NAME}" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -43,7 +43,7 @@ if [ ! -d "apps/${APP_NAME}" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -78,7 +78,7 @@ if [[ -z "$APP_NAME" ]]; then
show_help show_help
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -15,7 +15,7 @@ while [[ $# -gt 0 ]]; do
-h|--help) -h|--help)
echo "Usage: $0 <app_name> [--update]" echo "Usage: $0 <app_name> [--update]"
echo "" echo ""
echo "Fetch an app template from the Wild-Cloud repository to cache." echo "Fetch an app template from the Wild Cloud repository to cache."
echo "" echo ""
echo "Options:" echo "Options:"
echo " --update Overwrite existing cached files without confirmation" echo " --update Overwrite existing cached files without confirmation"
@@ -45,7 +45,7 @@ if [ -z "${APP_NAME}" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -24,7 +24,7 @@ while [[ $# -gt 0 ]]; do
-h|--help) -h|--help)
echo "Usage: $0 [--verbose] [--json|--yaml]" echo "Usage: $0 [--verbose] [--json|--yaml]"
echo "" echo ""
echo "List all available Wild-Cloud apps with their metadata." echo "List all available Wild Cloud apps with their metadata."
echo "" echo ""
echo "Options:" echo "Options:"
echo " --verbose, -v Show additional metadata (icon, requires)" echo " --verbose, -v Show additional metadata (icon, requires)"
@@ -48,7 +48,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1
@@ -142,12 +142,12 @@ extract_app_metadata() {
# Output header for table format # Output header for table format
if [ "${OUTPUT_FORMAT}" = "table" ]; then if [ "${OUTPUT_FORMAT}" = "table" ]; then
if [ "${VERBOSE}" = true ]; then if [ "${VERBOSE}" = true ]; then
echo "Available Wild-Cloud Apps (verbose):" echo "Available Wild Cloud Apps (verbose):"
echo "===================================================================================" echo "==================================================================================="
printf "%-15s %-10s %-12s %-40s %-15s %s\n" "NAME" "VERSION" "INSTALLED" "DESCRIPTION" "REQUIRES" "ICON" printf "%-15s %-10s %-12s %-40s %-15s %s\n" "NAME" "VERSION" "INSTALLED" "DESCRIPTION" "REQUIRES" "ICON"
printf "%-15s %-10s %-12s %-40s %-15s %s\n" "----" "-------" "---------" "-----------" "--------" "----" printf "%-15s %-10s %-12s %-40s %-15s %s\n" "----" "-------" "---------" "-----------" "--------" "----"
else else
echo "Available Wild-Cloud Apps:" echo "Available Wild Cloud Apps:"
echo "=========================================================================================================" echo "========================================================================================================="
printf "%-15s %-10s %-12s %s\n" "NAME" "VERSION" "INSTALLED" "DESCRIPTION" printf "%-15s %-10s %-12s %s\n" "NAME" "VERSION" "INSTALLED" "DESCRIPTION"
printf "%-15s %-10s %-12s %s\n" "----" "-------" "---------" "-----------" printf "%-15s %-10s %-12s %s\n" "----" "-------" "---------" "-----------"

View File

@@ -49,7 +49,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -42,7 +42,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -64,7 +64,7 @@ if [ -z "$NODE_IP" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -85,7 +85,7 @@ if [ -z "$NODE_IP" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -49,7 +49,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -63,7 +63,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -37,7 +37,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -49,7 +49,7 @@ if [ -z "${KEY_PATH}" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -57,7 +57,7 @@ if [ -z "${VALUE}" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -23,7 +23,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -49,7 +49,7 @@ if [ -z "${KEY_PATH}" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -57,7 +57,7 @@ if [ -z "${VALUE}" ]; then
exit 1 exit 1
fi fi
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -15,6 +15,10 @@ while [[ $# -gt 0 ]]; do
SKIP_SCAFFOLD=true SKIP_SCAFFOLD=true
shift shift
;; ;;
--skip-docs)
SKIP_DOCS=true
shift
;;
--skip-cluster) --skip-cluster)
SKIP_CLUSTER=true SKIP_CLUSTER=true
shift shift
@@ -26,18 +30,19 @@ while [[ $# -gt 0 ]]; do
-h|--help) -h|--help)
echo "Usage: $0 [component-options]" echo "Usage: $0 [component-options]"
echo "" echo ""
echo "Complete Wild-Cloud setup - runs all components in sequence." echo "Complete Wild Cloud setup - runs all components in sequence."
echo "" echo ""
echo "Component Control Options:" echo "Component Control Options:"
echo " --skip-scaffold Skip scaffold setup (cloud initialization)" echo " --skip-scaffold Skip scaffold setup (cloud initialization)"
echo " --skip-cluster Skip cluster setup (Phases 1-3)" echo " --skip-docs Skip cloud documentation setup"
echo " --skip-services Skip services setup (Phase 4)" echo " --skip-cluster Skip cluster setup"
echo " --skip-services Skip services setup"
echo " -h, --help Show this help message" echo " -h, --help Show this help message"
echo "" echo ""
echo "This script runs:" echo "This script runs:"
echo " 1. wild-setup-scaffold # Cloud initialization and basic config" echo " 1. wild-setup-scaffold # Cloud initialization and basic config"
echo " 2. wild-setup-cluster # Cluster infrastructure (Phases 1-3)" echo " 2. wild-setup-cluster # Cluster infrastructure"
echo " 3. wild-setup-services # Cluster services (Phase 4)" echo " 3. wild-setup-services # Cluster services"
echo "" echo ""
echo "You can also run these components individually:" echo "You can also run these components individually:"
echo " - wild-setup-scaffold [--update]" echo " - wild-setup-scaffold [--update]"
@@ -65,7 +70,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
@@ -75,8 +80,8 @@ else
init_wild_env init_wild_env
fi fi
print_header "Wild-Cloud Setup" print_header "Wild Cloud Setup"
print_info "Running complete Wild-Cloud setup." print_info "Running complete Wild Cloud setup."
echo "" echo ""
# ============================================================================= # =============================================================================
@@ -95,7 +100,26 @@ if [ "${SKIP_SCAFFOLD}" = false ]; then
fi fi
echo "" echo ""
else else
print_info "Skipping Component 1: Cloud Home Setup" print_info "Skipping Home Setup"
fi
# =============================================================================
# DOCS
# =============================================================================
if [ "${SKIP_DOCS}" = false ]; then
print_header "Cloud Docs"
print_info "Preparing your docs..."
if wild-setup-docs; then
print_success "Cloud docs setup completed"
else
print_error "Cloud docs setup failed"
exit 1
fi
echo ""
else
print_info "Skipping Docs Setup"
fi fi
# ============================================================================= # =============================================================================
@@ -114,7 +138,7 @@ if [ "${SKIP_CLUSTER}" = false ]; then
fi fi
echo "" echo ""
else else
print_info "Skipping Component 2: Cluster Setup" print_info "Skipping Cluster Setup"
fi fi
# ============================================================================= # =============================================================================
@@ -133,25 +157,25 @@ if [ "${SKIP_SERVICES}" = false ]; then
fi fi
echo "" echo ""
else else
print_info "Skipping Component 3: Services Setup" print_info "Skipping cluster services setup"
fi fi
# ============================================================================= # =============================================================================
# FINAL SUMMARY # FINAL SUMMARY
# ============================================================================= # =============================================================================
print_header "Wild-Cloud Complete Setup Finished!" print_header "Wild Cloud Setup Finished!"
echo "" echo ""
if [ "${SKIP_SERVICES}" = false ] && command -v kubectl >/dev/null 2>&1; then if [ "${SKIP_SERVICES}" = false ] && command -v kubectl >/dev/null 2>&1; then
if [ -f "${WC_HOME}/config.yaml" ]; then if [ -f "${WC_HOME}/config.yaml" ]; then
INTERNAL_DOMAIN=$(wild-config cloud.internalDomain 2>/dev/null || echo "your-internal-domain") INTERNAL_DOMAIN=$(wild-config cloud.internalDomain 2>/dev/null || echo "your-internal-domain")
print_info "Your Wild-Cloud is ready!" print_info "Your Wild Cloud is ready!"
echo " Dashboard: https://dashboard.${INTERNAL_DOMAIN}" echo " Dashboard: https://dashboard.${INTERNAL_DOMAIN}"
echo " Get token: ./bin/dashboard-token" echo " Get token: ./bin/dashboard-token"
fi fi
else else
print_info "Complete the remaining setup steps to finalize your Wild-Cloud deployment" print_info "Complete the remaining setup steps to finalize your Wild Cloud deployment"
fi fi
print_success "Wild-Cloud setup completed!" print_success "Wild Cloud setup completed!"

View File

@@ -56,7 +56,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
@@ -69,7 +69,7 @@ fi
# Check basic configuration # Check basic configuration
check_basic_config check_basic_config
print_header "Wild-Cloud Cluster Setup" print_header "Wild Cloud Cluster Setup"
print_info "Setting up cluster infrastructure" print_info "Setting up cluster infrastructure"
echo "" echo ""
@@ -480,7 +480,7 @@ fi
# COMPLETION # COMPLETION
# ============================================================================= # =============================================================================
print_header "Wild-Cloud Cluster Setup Complete!" print_header "Wild Cloud Cluster Setup Complete!"
print_success "Cluster infrastructure setup completed!" print_success "Cluster infrastructure setup completed!"
echo "" echo ""

View File

@@ -15,7 +15,7 @@ while [[ $# -gt 0 ]]; do
-h|--help) -h|--help)
echo "Usage: $0 [--update]" echo "Usage: $0 [--update]"
echo "" echo ""
echo "Copy Wild-Cloud documentation to the current cloud directory." echo "Copy Wild Cloud documentation to the current cloud directory."
echo "" echo ""
echo "Options:" echo "Options:"
echo " --update Update existing docs (overwrite)" echo " --update Update existing docs (overwrite)"
@@ -36,7 +36,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
echo "WC_ROOT is not set." echo "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -17,7 +17,7 @@ while [[ $# -gt 0 ]]; do
-h|--help) -h|--help)
echo "Usage: $0 [--update]" echo "Usage: $0 [--update]"
echo "" echo ""
echo "Initialize Wild-Cloud scaffold and basic configuration." echo "Initialize Wild Cloud scaffold and basic configuration."
echo "" echo ""
echo "Options:" echo "Options:"
echo " --update Update existing cloud files (overwrite)" echo " --update Update existing cloud files (overwrite)"
@@ -48,7 +48,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
@@ -62,7 +62,7 @@ TEMPLATE_DIR="${WC_ROOT}/setup/home-scaffold"
# Check if cloud already exists # Check if cloud already exists
if [ -d ".wildcloud" ]; then if [ -d ".wildcloud" ]; then
echo "Wild-Cloud already exists in this directory." echo "Wild Cloud already exists in this directory."
echo "" echo ""
read -p "Do you want to update cloud files? (y/N): " -n 1 -r read -p "Do you want to update cloud files? (y/N): " -n 1 -r
echo echo
@@ -84,7 +84,7 @@ else
fi fi
fi fi
echo "Initializing Wild-Cloud in $(pwd)" echo "Initializing Wild Cloud in $(pwd)"
UPDATE=false UPDATE=false
fi fi
@@ -137,7 +137,7 @@ if [ ! -d ".wildcloud" ] || [ "${UPDATE}" = true ]; then
copy_cloud_files "${TEMPLATE_DIR}" "." copy_cloud_files "${TEMPLATE_DIR}" "."
echo "" echo ""
echo "Wild-Cloud initialized successfully!" echo "Wild Cloud initialized successfully!"
echo "" echo ""
fi fi
@@ -171,7 +171,7 @@ fi
# COMPLETION # COMPLETION
# ============================================================================= # =============================================================================
print_header "Wild-Cloud Scaffold Setup Complete!" print_header "Wild Cloud Scaffold Setup Complete!"
print_success "Cloud scaffold initialized successfully!" print_success "Cloud scaffold initialized successfully!"
echo "" echo ""

View File

@@ -48,7 +48,7 @@ while [[ $# -gt 0 ]]; do
esac esac
done done
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
@@ -123,4 +123,4 @@ else
echo " 3. Verify components are running correctly" echo " 3. Verify components are running correctly"
fi fi
print_success "Wild-Cloud setup completed!" print_success "Wild Cloud setup completed!"

View File

@@ -6,7 +6,7 @@
set -euo pipefail set -euo pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -1,4 +1,4 @@
# Setting Up Your Wild-cloud # Setting Up Your Wild Cloud
Install dependencies: Install dependencies:

View File

@@ -1,4 +1,4 @@
# Wild-cloud Setup # Wild Cloud Setup
## Hardware prerequisites ## Hardware prerequisites
@@ -78,7 +78,7 @@ kubectl get nodes
./setup/cluster/validate-setup.sh ./setup/cluster/validate-setup.sh
``` ```
## Installing Wild-Cloud apps ## Installing Wild Cloud apps
```bash ```bash
wild-apps-list wild-apps-list

View File

@@ -1,6 +1,6 @@
# Wild-Cloud App Workflow # Wild Cloud App Workflow
The Wild-cloud app workflow consists of three steps: The Wild Cloud app workflow consists of three steps:
1. **Fetch** - Download raw app templates to cache 1. **Fetch** - Download raw app templates to cache
2. **Config** - Apply your local configuration to templates 2. **Config** - Apply your local configuration to templates

View File

@@ -1,4 +1,4 @@
# Converting Helm Charts to Wild-Cloud Kustomize definitions # Converting Helm Charts to Wild Cloud Kustomize definitions
_(This guide is a work in progress)_ _(This guide is a work in progress)_

2
env.sh
View File

@@ -30,4 +30,4 @@ if ! command -v gomplate &> /dev/null; then
exit 1 exit 1
fi fi
echo "Wild-cloud root ready." echo "Wild Cloud root ready."

View File

@@ -1 +1 @@
# Wild-cloud API Backend Service # Wild Cloud API Backend Service

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# wild-common.sh # wild-common.sh
# Common utility functions for Wild-Cloud shell scripts # Common utility functions for Wild Cloud shell scripts
# Source this file at the beginning of scripts to access shared functionality # Source this file at the beginning of scripts to access shared functionality
# #
# USAGE PATTERN: # USAGE PATTERN:
@@ -14,7 +14,7 @@
# # Source common utilities # # Source common utilities
# source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/wild-common.sh" # source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/wild-common.sh"
# #
# # Initialize Wild-Cloud environment # # Initialize Wild Cloud environment
# init_wild_env # init_wild_env
# #
# AVAILABLE FUNCTIONS: # AVAILABLE FUNCTIONS:
@@ -180,7 +180,7 @@ find_wc_home() {
return 1 return 1
} }
# Initialize common Wild-Cloud environment variables # Initialize common Wild Cloud environment variables
# Call this function at the beginning of scripts # Call this function at the beginning of scripts
init_wild_env() { init_wild_env() {
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -2,7 +2,7 @@
set -e set -e
set -o pipefail set -o pipefail
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -e set -e
# Initialize Wild-Cloud environment # Initialize Wild Cloud environment
if [ -z "${WC_ROOT}" ]; then if [ -z "${WC_ROOT}" ]; then
print "WC_ROOT is not set." print "WC_ROOT is not set."
exit 1 exit 1

View File

@@ -1,4 +1,4 @@
# Your Wild-Cloud # Your Wild Cloud
## One-time Setup ## One-time Setup
@@ -12,7 +12,7 @@ wild-setup
## Using your wild-cloud ## Using your wild-cloud
### Installing Wild-Cloud apps ### Installing Wild Cloud apps
```bash ```bash
wild-apps-list wild-apps-list

View File

@@ -1,4 +1,4 @@
# My Wild-cloud Apps # My Wild Cloud Apps
This directory contains the definitions for _your_ wild-cloud apps. 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`. This directory contains the definitions for _your_ wild-cloud apps. 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`.
@@ -12,7 +12,7 @@ wild-cloud-app-list
### App Workflow ### App Workflow
The Wild-cloud app workflow consists of three steps: The Wild Cloud app workflow consists of three steps:
1. **Fetch** - Download raw app templates to cache 1. **Fetch** - Download raw app templates to cache
2. **Config** - Apply your local configuration to templates 2. **Config** - Apply your local configuration to templates