{
  "manifest_version": "1.0.0",
  "template": {
    "id": "75ec57b7-697a-4a01-a21f-b5394dc066e9",
    "slug": "openshorturl-1",
    "name": "OpenShortURL",
    "description": "Open-source URL shortener with analytics, custom slugs, QR codes & API",
    "url": "https://railway.com/deploy/openshorturl-1"
  },
  "services": [
    {
      "name": "frontend",
      "source": {
        "image": "ghcr.io/supra126/open-short-url-frontend:latest"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:17.7"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "tcp_ports": [
        5432
      ],
      "http": false
    },
    {
      "name": "backend",
      "source": {
        "image": "ghcr.io/supra126/open-short-url-backend:latest"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.4.0"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "tcp_ports": [
        6379
      ],
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "NEXT_PUBLIC_LOCALE",
      "service": "frontend",
      "description": "Default language locale (en, zh-TW, zh-CN, ja, ko)",
      "secret": false,
      "strategy": "default",
      "default": "en"
    },
    {
      "key": "NEXT_PUBLIC_API_URL",
      "service": "frontend",
      "description": "Backend API URL (auto-configured from backend service)",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "NEXT_PUBLIC_BRAND_NAME",
      "service": "frontend",
      "description": "Your brand name displayed in the frontend",
      "secret": false,
      "strategy": "default",
      "default": "Open Short URL"
    },
    {
      "key": "NEXT_PUBLIC_SHORT_URL_DOMAIN",
      "service": "frontend",
      "description": "Domain for displaying short URLs (auto-configured from backend)",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Provide a value for PGDATA.",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Provide a value for PGHOST.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Provide a value for PGPORT.",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "Provide a value for PGUSER.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "Provide a value for PGDATABASE.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "Provide a value for PGPASSWORD.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Provide a value for POSTGRES_DB.",
      "secret": false,
      "strategy": "default",
      "default": "open_short_url"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Provide a value for DATABASE_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "Provide a value for POSTGRES_USER.",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "Provide a value for SSL_CERT_DAYS.",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Provide a value for POSTGRES_PASSWORD.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_PUBLIC_URL",
      "service": "Postgres",
      "description": "Provide a value for DATABASE_PUBLIC_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Provide a value for RAILWAY_DEPLOYMENT_DRAINING_SECONDS.",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "PORT",
      "service": "backend",
      "description": "Backend server port (Railway will auto-assign if empty)",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "BRAND_NAME",
      "service": "backend",
      "description": "Your brand name displayed in the application",
      "secret": false,
      "strategy": "default",
      "default": "Open Short URL"
    },
    {
      "key": "JWT_SECRET",
      "service": "backend",
      "description": "Secret key for JWT token encryption (auto-generated)",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "REDIS_HOST",
      "service": "backend",
      "description": "Redis server hostname (auto-configured from Redis service)",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDIS_PORT",
      "service": "backend",
      "description": "Redis server port (auto-configured from Redis service)",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "CORS_ORIGIN",
      "service": "backend",
      "description": "Allowed CORS origin (auto-configured from frontend URL)",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "DATABASE_URL",
      "service": "backend",
      "description": "PostgreSQL connection URL (auto-configured from Postgres service)",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "FRONTEND_URL",
      "service": "backend",
      "description": "Frontend application URL (auto-configured)",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "THROTTLE_TTL",
      "service": "backend",
      "description": "Rate limiting time window in seconds (default: 60 seconds)",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "COOKIE_DOMAIN",
      "service": "backend",
      "description": "ADVANCED: Override auto-detected cookie domain (leave empty for automatic detection based on FRONTEND_URL, e.g., app.example.com -> .example.com)",
      "secret": false,
      "strategy": "default",
      "default": "up.railway.app"
    },
    {
      "key": "JWT_EXPIRES_IN",
      "service": "backend",
      "description": "JWT token expiration time (e.g., 7d, 24h, 30m)",
      "secret": false,
      "strategy": "default",
      "default": "7d"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "backend",
      "description": "Redis password (auto-configured from Redis service)",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "THROTTLE_LIMIT",
      "service": "backend",
      "description": "Maximum requests per time window (default: 10 requests per minute)",
      "secret": false,
      "strategy": "default",
      "default": "10"
    },
    {
      "key": "SHORT_URL_DOMAIN",
      "service": "backend",
      "description": "Domain for short URLs (e.g., go.yourdomain.com or RAILWAY_PUBLIC_DOMAIN)",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "WEBHOOK_SECRET_KEY",
      "service": "backend",
      "description": "Secret key for webhook payload signing and encryption",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Provide a value for REDISHOST.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Provide a value for REDISPORT.",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Provide a value for REDISUSER.",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Provide a value for REDIS_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Provide a value for REDISPASSWORD.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Provide a value for REDIS_PASSWORD.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "REDIS_PUBLIC_URL",
      "service": "Redis",
      "description": "Provide a value for REDIS_PUBLIC_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "openshorturl-1"
      }
    },
    "cli": "railway deploy --template openshorturl-1",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "75ec57b7-697a-4a01-a21f-b5394dc066e9",
            "serializedConfig": {
              "services": {
                "879efb87-4856-45ff-964b-5b399c245662": {
                  "icon": "https://devicons.railway.com/i/nextjs-light.svg",
                  "name": "frontend",
                  "source": {
                    "image": "ghcr.io/supra126/open-short-url-frontend:latest"
                  },
                  "variables": {
                    "AI_MODEL": {
                      "isOptional": true,
                      "description": "AI model name (e.g., claude-3-5-sonnet-20241022, gpt-4o, gemini-2.0-flash-exp)",
                      "defaultValue": ""
                    },
                    "AI_PROVIDER": {
                      "isOptional": true,
                      "description": "AI provider: anthropic, openai, or google (optional, leave empty to disable AI features)",
                      "defaultValue": ""
                    },
                    "GOOGLE_API_KEY": {
                      "isOptional": true,
                      "description": "Google API key for Gemini models (optional, required if AI_PROVIDER=google)",
                      "defaultValue": ""
                    },
                    "OPENAI_API_KEY": {
                      "isOptional": true,
                      "description": "OpenAI API key for GPT models (optional, required if AI_PROVIDER=openai)",
                      "defaultValue": ""
                    },
                    "ANTHROPIC_API_KEY": {
                      "isOptional": true,
                      "description": "Anthropic API key for Claude models (optional, required if AI_PROVIDER=anthropic)",
                      "defaultValue": ""
                    },
                    "NEXT_PUBLIC_LOCALE": {
                      "isOptional": true,
                      "description": "Default language locale (en, zh-TW, zh-CN, ja, ko)",
                      "defaultValue": "en"
                    },
                    "NEXT_PUBLIC_API_URL": {
                      "description": "Backend API URL (auto-configured from backend service)",
                      "defaultValue": "https://${{backend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "NEXT_PUBLIC_BRAND_NAME": {
                      "isOptional": true,
                      "description": "Your brand name displayed in the frontend",
                      "defaultValue": "Open Short URL"
                    },
                    "NEXT_PUBLIC_BRAND_ICON_URL": {
                      "isOptional": true,
                      "description": "URL to your brand icon/favicon (optional, e.g., https://yourdomain.com/icon.png)",
                      "defaultValue": ""
                    },
                    "NEXT_PUBLIC_SHORT_URL_DOMAIN": {
                      "description": "Domain for displaying short URLs (auto-configured from backend)",
                      "defaultValue": "https://${{backend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "NEXT_PUBLIC_BRAND_DESCRIPTION": {
                      "isOptional": true,
                      "description": "description\": \"Brand description for SEO meta tags (optional)",
                      "defaultValue": ""
                    },
                    "NEXT_PUBLIC_TURNSTILE_SITE_KEY": {
                      "isOptional": true,
                      "description": "Cloudflare Turnstile site key for bot protection (optional, must match backend key)",
                      "defaultValue": ""
                    }
                  }
                },
                "a9db8520-9127-4d82-aa68-67bfcdc1f269": {
                  "icon": "https://devicons.railway.app/i/postgresql.svg",
                  "name": "Postgres",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:17.7"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "open_short_url"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_PUBLIC_URL": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{PGDATABASE}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "60"
                    }
                  },
                  "networking": {
                    "tcpProxies": {
                      "5432": {}
                    }
                  },
                  "volumeMounts": {
                    "a9db8520-9127-4d82-aa68-67bfcdc1f269": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  },
                  "haTemplateCode": "postgres-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxy",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "Routes traffic to the primary",
                      "defaultValue": 3
                    },
                    "replica": {
                      "label": "Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5,
                        6,
                        7
                      ],
                      "nodeLabel": "Postgres",
                      "description": "Streaming replicas for automatic failover",
                      "defaultValue": 2
                    },
                    "internal": {
                      "label": "Coordinator Nodes",
                      "options": [
                        3,
                        5,
                        7,
                        9
                      ],
                      "nodeLabel": "etcd",
                      "defaultValue": 3
                    },
                    "description": "This will convert your Postgres database to an HA cluster with Patroni failover and etcd consensus."
                  }
                },
                "aec55fb2-b8a1-4515-8676-71bccc16ed39": {
                  "icon": "https://devicons.railway.com/i/nestjs.svg",
                  "name": "backend",
                  "source": {
                    "image": "ghcr.io/supra126/open-short-url-backend:latest"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": true,
                      "description": "Backend server port (Railway will auto-assign if empty)",
                      "defaultValue": "8080"
                    },
                    "SMTP_FROM": {
                      "isOptional": true,
                      "description": "Email sender address (optional, for password reset emails)",
                      "defaultValue": ""
                    },
                    "SMTP_HOST": {
                      "isOptional": true,
                      "description": "SMTP server hostname (optional, e.g., smtp.gmail.com)",
                      "defaultValue": ""
                    },
                    "SMTP_PORT": {
                      "isOptional": true,
                      "description": "SMTP server port (optional, typically 587 for TLS)",
                      "defaultValue": ""
                    },
                    "SMTP_USER": {
                      "isOptional": true,
                      "description": "SMTP username for authentication (optional)",
                      "defaultValue": ""
                    },
                    "BRAND_NAME": {
                      "isOptional": true,
                      "description": "Your brand name displayed in the application",
                      "defaultValue": "Open Short URL"
                    },
                    "JWT_SECRET": {
                      "description": "Secret key for JWT token encryption (auto-generated)",
                      "defaultValue": "{{JWT_SECRET}}"
                    },
                    "REDIS_HOST": {
                      "isOptional": true,
                      "description": "Redis server hostname (auto-configured from Redis service)",
                      "defaultValue": "${{Redis.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDIS_PORT": {
                      "isOptional": true,
                      "description": "Redis server port (auto-configured from Redis service)",
                      "defaultValue": "${{Redis.REDISPORT}}"
                    },
                    "CORS_ORIGIN": {
                      "description": "Allowed CORS origin (auto-configured from frontend URL)",
                      "defaultValue": "https://${{frontend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "DATABASE_URL": {
                      "description": "PostgreSQL connection URL (auto-configured from Postgres service)",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "FRONTEND_URL": {
                      "description": "Frontend application URL (auto-configured)",
                      "defaultValue": "https://${{frontend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "THROTTLE_TTL": {
                      "isOptional": true,
                      "description": "Rate limiting time window in seconds (default: 60 seconds)",
                      "defaultValue": "60"
                    },
                    "COOKIE_DOMAIN": {
                      "isOptional": true,
                      "description": "ADVANCED: Override auto-detected cookie domain (leave empty for automatic detection based on FRONTEND_URL, e.g., app.example.com -> .example.com)",
                      "defaultValue": "up.railway.app"
                    },
                    "SMTP_PASSWORD": {
                      "isOptional": true,
                      "description": "SMTP password for authentication (optional)",
                      "defaultValue": ""
                    },
                    "BRAND_LOGO_URL": {
                      "isOptional": true,
                      "description": "URL to your brand logo image (optional, e.g., https://yourdomain.com/logo.png)",
                      "defaultValue": ""
                    },
                    "JWT_EXPIRES_IN": {
                      "isOptional": true,
                      "description": "JWT token expiration time (e.g., 7d, 24h, 30m)",
                      "defaultValue": "7d"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": true,
                      "description": "Redis password (auto-configured from Redis service)",
                      "defaultValue": "${{Redis.REDISPASSWORD}}"
                    },
                    "THROTTLE_LIMIT": {
                      "isOptional": true,
                      "description": "Maximum requests per time window (default: 10 requests per minute)",
                      "defaultValue": "10"
                    },
                    "SHORT_URL_DOMAIN": {
                      "description": "Domain for short URLs (e.g., go.yourdomain.com or RAILWAY_PUBLIC_DOMAIN)",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "TURNSTILE_SITE_KEY": {
                      "isOptional": true,
                      "description": "Cloudflare Turnstile site key for bot protection (optional, get from cloudflare.com)",
                      "defaultValue": ""
                    },
                    "WEBHOOK_SECRET_KEY": {
                      "isOptional": true,
                      "description": "Secret key for webhook payload signing and encryption",
                      "defaultValue": "{{WEBHOOK_SECRET_KEY}}"
                    },
                    "TURNSTILE_SECRET_KEY": {
                      "isOptional": true,
                      "description": "Cloudflare Turnstile secret key for bot protection (optional, get from cloudflare.com)",
                      "defaultValue": ""
                    }
                  }
                },
                "bc5b42cb-65b7-47cf-a08a-6188d423a2b5": {
                  "icon": "https://cdn.sanity.io/images/sy1jschh/production/0ce0bfdcfbdbf69662b1116671f97c2dd788b655-157x157.svg",
                  "name": "Redis",
                  "deploy": {
                    "startCommand": "/bin/sh -c \"rm -rf $RAILWAY_VOLUME_MOUNT_PATH/lost+found/ && exec docker-entrypoint.sh redis-server --requirepass $REDIS_PASSWORD --save 60 1 --dir $RAILWAY_VOLUME_MOUNT_PATH\"",
                    "healthcheckPath": null
                  },
                  "source": {
                    "image": "redis:8.4.0"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    },
                    "REDIS_PUBLIC_URL": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "redis://default:${{REDIS_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}"
                    }
                  },
                  "networking": {
                    "tcpProxies": {
                      "6379": {}
                    }
                  },
                  "volumeMounts": {
                    "bc5b42cb-65b7-47cf-a08a-6188d423a2b5": {
                      "mountPath": "/data"
                    }
                  },
                  "haTemplateCode": "redis-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxies",
                      "options": [
                        1,
                        2
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "HAProxy instances routing writes to the primary",
                      "defaultValue": 2
                    },
                    "replica": {
                      "label": "Redis Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "Redis",
                      "description": "Nodes running Redis + colocated Sentinel",
                      "defaultValue": 2
                    },
                    "internal": null,
                    "description": "This will convert your Redis instance to an HA cluster with Sentinel failover and HAProxy routing to the primary."
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {},
  "resources": {
    "expected_services": 4,
    "needs_volume": true
  },
  "generated_at": "2026-09-20T10:14:37.339Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-18T18:53:55.671Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_7255edc9743042be9b8e",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 111,
    "typical_build_seconds": 0,
    "typical_start_seconds": 20,
    "slowest_service": "backend"
  }
}
