{
  "manifest_version": "1.0.0",
  "template": {
    "id": "90c8a3c6-92fb-44cc-9ec8-e8b1b90a8e44",
    "slug": "bagisto-ecom",
    "name": "Bagisto",
    "description": "Laravel e-commerce storefront, checkout, catalogue and CMS",
    "url": "https://railway.com/deploy/bagisto-ecom",
    "upstream": {
      "repo_url": "https://github.com/gridalpha/bagisto-railway"
    }
  },
  "services": [
    {
      "name": "bagisto",
      "source": {
        "repo": "https://github.com/gridalpha/bagisto-railway"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/www/bagisto/storage",
      "http": true
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "MySQL",
      "source": {
        "image": "mysql:9.4"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/mysql",
      "tcp_ports": [
        3306
      ],
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "bagisto",
      "description": "nginx listening port",
      "secret": false,
      "strategy": "default",
      "default": "80"
    },
    {
      "key": "APP_ENV",
      "service": "bagisto",
      "description": "Laravel application environment",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "APP_KEY",
      "service": "bagisto",
      "description": "Laravel encryption key",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "APP_URL",
      "service": "bagisto",
      "description": "Public storefront base URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "DB_HOST",
      "service": "bagisto",
      "description": "Private MySQL hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PORT",
      "service": "bagisto",
      "description": "MySQL port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "APP_NAME",
      "service": "bagisto",
      "description": "Store name shown to shoppers",
      "secret": false,
      "strategy": "default",
      "default": "Bagisto"
    },
    {
      "key": "APP_DEBUG",
      "service": "bagisto",
      "description": "Hide stack traces from visitors",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "LOG_LEVEL",
      "service": "bagisto",
      "description": "Minimum log level",
      "secret": false,
      "strategy": "default",
      "default": "info"
    },
    {
      "key": "ADMIN_NAME",
      "service": "bagisto",
      "description": "First administrator display name",
      "secret": false,
      "strategy": "default",
      "default": "Store Admin"
    },
    {
      "key": "APP_LOCALE",
      "service": "bagisto",
      "description": "Default storefront language",
      "secret": false,
      "strategy": "default",
      "default": "en"
    },
    {
      "key": "REDIS_HOST",
      "service": "bagisto",
      "description": "Private Redis hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PORT",
      "service": "bagisto",
      "description": "Redis port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ADMIN_EMAIL",
      "service": "bagisto",
      "description": "First administrator login email",
      "secret": false,
      "strategy": "default",
      "default": "admin@example.com"
    },
    {
      "key": "CACHE_STORE",
      "service": "bagisto",
      "description": "Application cache backend",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "DB_DATABASE",
      "service": "bagisto",
      "description": "Application database name",
      "secret": false,
      "strategy": "default",
      "default": "bagisto"
    },
    {
      "key": "DB_PASSWORD",
      "service": "bagisto",
      "description": "Password for the scoped user",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DB_USERNAME",
      "service": "bagisto",
      "description": "Scoped application database user",
      "secret": false,
      "strategy": "default",
      "default": "bagisto"
    },
    {
      "key": "LOG_CHANNEL",
      "service": "bagisto",
      "description": "Stream application logs to Railway",
      "secret": false,
      "strategy": "default",
      "default": "stderr"
    },
    {
      "key": "APP_CURRENCY",
      "service": "bagisto",
      "description": "Default store currency",
      "secret": false,
      "strategy": "default",
      "default": "USD"
    },
    {
      "key": "APP_TIMEZONE",
      "service": "bagisto",
      "description": "Store timezone",
      "secret": false,
      "strategy": "default",
      "default": "UTC"
    },
    {
      "key": "REDIS_CLIENT",
      "service": "bagisto",
      "description": "Redis client library",
      "secret": false,
      "strategy": "default",
      "default": "predis"
    },
    {
      "key": "APP_ADMIN_URL",
      "service": "bagisto",
      "description": "Admin panel path segment",
      "secret": false,
      "strategy": "default",
      "default": "admin"
    },
    {
      "key": "DB_CONNECTION",
      "service": "bagisto",
      "description": "Database driver",
      "secret": false,
      "strategy": "default",
      "default": "mysql"
    },
    {
      "key": "QUEUE_WORKERS",
      "service": "bagisto",
      "description": "Supervised queue worker processes",
      "secret": false,
      "strategy": "default",
      "default": "2"
    },
    {
      "key": "ADMIN_PASSWORD",
      "service": "bagisto",
      "description": "First administrator password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "bagisto",
      "description": "Redis password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_USERNAME",
      "service": "bagisto",
      "description": "Redis ACL username",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SESSION_DRIVER",
      "service": "bagisto",
      "description": "Shopper session storage backend",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "FILESYSTEM_DISK",
      "service": "bagisto",
      "description": "Store uploads on the mounted volume",
      "secret": false,
      "strategy": "default",
      "default": "public"
    },
    {
      "key": "QUEUE_CONNECTION",
      "service": "bagisto",
      "description": "Background job queue backend",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "DB_ADMIN_PASSWORD",
      "service": "bagisto",
      "description": "Admin password, first boot only",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_ADMIN_USERNAME",
      "service": "bagisto",
      "description": "Admin user, first boot only",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SESSION_CONNECTION",
      "service": "bagisto",
      "description": "Redis database used for sessions",
      "secret": false,
      "strategy": "default",
      "default": "session"
    },
    {
      "key": "BAGISTO_DEMO_PRODUCTS",
      "service": "bagisto",
      "description": "Seed sample catalogue on first install",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "SESSION_SECURE_COOKIE",
      "service": "bagisto",
      "description": "Send session cookies over HTTPS only",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "NGINX_WORKER_PROCESSES",
      "service": "bagisto",
      "description": "nginx worker processes",
      "secret": false,
      "strategy": "default",
      "default": "2"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Private hostname, reachable only inside the project",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Standard Redis port",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Default ACL user created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Private connection string, use this from other services",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Convenience alias of the generated password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Generated password for the default user",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "REDIS_PUBLIC_URL",
      "service": "Redis",
      "description": "Public connection string over the TCP proxy, for external tools",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQLHOST",
      "service": "MySQL",
      "description": "Private hostname, never publicly exposed",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "MYSQLPORT",
      "service": "MySQL",
      "description": "MySQL port on the private network",
      "secret": false,
      "strategy": "default",
      "default": "3306"
    },
    {
      "key": "MYSQLUSER",
      "service": "MySQL",
      "description": "Superuser; give the app a scoped user instead",
      "secret": false,
      "strategy": "default",
      "default": "root"
    },
    {
      "key": "MYSQL_URL",
      "service": "MySQL",
      "description": "Private-network connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "MYSQLDATABASE",
      "service": "MySQL",
      "description": "Alias consumers reference as ${{MySQL.MYSQLDATABASE}}",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQLPASSWORD",
      "service": "MySQL",
      "description": "Alias of the root password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQL_DATABASE",
      "service": "MySQL",
      "description": "Database created on first init",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "MYSQL_PUBLIC_URL",
      "service": "MySQL",
      "description": "External connection string; empty host/port until a TCP proxy exists",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQL_ROOT_PASSWORD",
      "service": "MySQL",
      "description": "Root password, generated once at init — read only when the data dir is created",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "bagisto-ecom"
      }
    },
    "cli": "railway deploy --template bagisto-ecom",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "90c8a3c6-92fb-44cc-9ec8-e8b1b90a8e44",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "82c959bc-eadf-4754-822c-5e6e214c805c": {
                  "icon": "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/bagisto.svg",
                  "name": "bagisto",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/up",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/bagisto-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "nginx listening port",
                      "defaultValue": "80"
                    },
                    "APP_ENV": {
                      "isOptional": false,
                      "description": "Laravel application environment",
                      "defaultValue": "production"
                    },
                    "APP_KEY": {
                      "isOptional": false,
                      "description": "Laravel encryption key",
                      "defaultValue": "{{APP_KEY}}"
                    },
                    "APP_URL": {
                      "isOptional": false,
                      "description": "Public storefront base URL",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "DB_HOST": {
                      "isOptional": false,
                      "description": "Private MySQL hostname",
                      "defaultValue": "${{MySQL.MYSQLHOST}}"
                    },
                    "DB_PORT": {
                      "isOptional": false,
                      "description": "MySQL port",
                      "defaultValue": "${{MySQL.MYSQLPORT}}"
                    },
                    "APP_NAME": {
                      "isOptional": false,
                      "description": "Store name shown to shoppers",
                      "defaultValue": "Bagisto"
                    },
                    "APP_DEBUG": {
                      "isOptional": false,
                      "description": "Hide stack traces from visitors",
                      "defaultValue": "false"
                    },
                    "LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Minimum log level",
                      "defaultValue": "info"
                    },
                    "ADMIN_NAME": {
                      "isOptional": false,
                      "description": "First administrator display name",
                      "defaultValue": "Store Admin"
                    },
                    "APP_LOCALE": {
                      "isOptional": false,
                      "description": "Default storefront language",
                      "defaultValue": "en"
                    },
                    "REDIS_HOST": {
                      "isOptional": false,
                      "description": "Private Redis hostname",
                      "defaultValue": "${{Redis.REDISHOST}}"
                    },
                    "REDIS_PORT": {
                      "isOptional": false,
                      "description": "Redis port",
                      "defaultValue": "${{Redis.REDISPORT}}"
                    },
                    "ADMIN_EMAIL": {
                      "isOptional": false,
                      "description": "First administrator login email",
                      "defaultValue": "admin@example.com"
                    },
                    "CACHE_STORE": {
                      "isOptional": false,
                      "description": "Application cache backend",
                      "defaultValue": "redis"
                    },
                    "DB_DATABASE": {
                      "isOptional": false,
                      "description": "Application database name",
                      "defaultValue": "bagisto"
                    },
                    "DB_PASSWORD": {
                      "isOptional": false,
                      "description": "Password for the scoped user",
                      "defaultValue": "{{DB_PASSWORD}}"
                    },
                    "DB_USERNAME": {
                      "isOptional": false,
                      "description": "Scoped application database user",
                      "defaultValue": "bagisto"
                    },
                    "LOG_CHANNEL": {
                      "isOptional": false,
                      "description": "Stream application logs to Railway",
                      "defaultValue": "stderr"
                    },
                    "APP_CURRENCY": {
                      "isOptional": false,
                      "description": "Default store currency",
                      "defaultValue": "USD"
                    },
                    "APP_TIMEZONE": {
                      "isOptional": false,
                      "description": "Store timezone",
                      "defaultValue": "UTC"
                    },
                    "REDIS_CLIENT": {
                      "isOptional": false,
                      "description": "Redis client library",
                      "defaultValue": "predis"
                    },
                    "APP_ADMIN_URL": {
                      "isOptional": false,
                      "description": "Admin panel path segment",
                      "defaultValue": "admin"
                    },
                    "DB_CONNECTION": {
                      "isOptional": false,
                      "description": "Database driver",
                      "defaultValue": "mysql"
                    },
                    "QUEUE_WORKERS": {
                      "isOptional": false,
                      "description": "Supervised queue worker processes",
                      "defaultValue": "2"
                    },
                    "ADMIN_PASSWORD": {
                      "isOptional": false,
                      "description": "First administrator password",
                      "defaultValue": "{{ADMIN_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Redis password",
                      "defaultValue": "${{Redis.REDISPASSWORD}}"
                    },
                    "REDIS_USERNAME": {
                      "isOptional": false,
                      "description": "Redis ACL username",
                      "defaultValue": "${{Redis.REDISUSER}}"
                    },
                    "SESSION_DRIVER": {
                      "isOptional": false,
                      "description": "Shopper session storage backend",
                      "defaultValue": "redis"
                    },
                    "FILESYSTEM_DISK": {
                      "isOptional": false,
                      "description": "Store uploads on the mounted volume",
                      "defaultValue": "public"
                    },
                    "QUEUE_CONNECTION": {
                      "isOptional": false,
                      "description": "Background job queue backend",
                      "defaultValue": "redis"
                    },
                    "DB_ADMIN_PASSWORD": {
                      "isOptional": false,
                      "description": "Admin password, first boot only",
                      "defaultValue": "${{MySQL.MYSQLPASSWORD}}"
                    },
                    "DB_ADMIN_USERNAME": {
                      "isOptional": false,
                      "description": "Admin user, first boot only",
                      "defaultValue": "${{MySQL.MYSQLUSER}}"
                    },
                    "SESSION_CONNECTION": {
                      "isOptional": false,
                      "description": "Redis database used for sessions",
                      "defaultValue": "session"
                    },
                    "BAGISTO_DEMO_PRODUCTS": {
                      "isOptional": false,
                      "description": "Seed sample catalogue on first install",
                      "defaultValue": "true"
                    },
                    "SESSION_SECURE_COOKIE": {
                      "isOptional": false,
                      "description": "Send session cookies over HTTPS only",
                      "defaultValue": "true"
                    },
                    "NGINX_WORKER_PROCESSES": {
                      "isOptional": false,
                      "description": "nginx worker processes",
                      "defaultValue": "2"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:80": {
                        "port": 80
                      }
                    }
                  },
                  "volumeMounts": {
                    "82c959bc-eadf-4754-822c-5e6e214c805c": {
                      "mountPath": "/var/www/bagisto/storage"
                    }
                  }
                },
                "aaec5e47-db03-408b-aa14-cd90b398effa": {
                  "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,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "redis:8.2"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "description": "Private hostname, reachable only inside the project",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Standard Redis port",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Default ACL user created on first boot",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private connection string, use this from other services",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Convenience alias of the generated password",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated password for the default user",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    },
                    "REDIS_PUBLIC_URL": {
                      "description": "Public connection string over the TCP proxy, for external tools",
                      "defaultValue": "redis://default:${{REDIS_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}"
                    }
                  },
                  "volumeMounts": {
                    "aaec5e47-db03-408b-aa14-cd90b398effa": {
                      "mountPath": "/data"
                    }
                  }
                },
                "b9e3c983-54eb-477d-a31c-e29997b3d6b5": {
                  "icon": "https://devicons.railway.app/i/mysql.svg",
                  "name": "MySQL",
                  "deploy": {
                    "startCommand": "docker-entrypoint.sh mysqld --innodb-use-native-aio=0 --disable-log-bin --performance_schema=0 --innodb-buffer-pool-size=1G",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "mysql:9.4"
                  },
                  "variables": {
                    "MYSQLHOST": {
                      "isOptional": false,
                      "description": "Private hostname, never publicly exposed",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "MYSQLPORT": {
                      "isOptional": false,
                      "description": "MySQL port on the private network",
                      "defaultValue": "3306"
                    },
                    "MYSQLUSER": {
                      "isOptional": false,
                      "description": "Superuser; give the app a scoped user instead",
                      "defaultValue": "root"
                    },
                    "MYSQL_URL": {
                      "isOptional": false,
                      "description": "Private-network connection string",
                      "defaultValue": "mysql://${{MYSQLUSER}}:${{MYSQL_ROOT_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:3306/${{MYSQL_DATABASE}}"
                    },
                    "MYSQLDATABASE": {
                      "isOptional": false,
                      "description": "Alias consumers reference as ${{MySQL.MYSQLDATABASE}}",
                      "defaultValue": "${{MYSQL_DATABASE}}"
                    },
                    "MYSQLPASSWORD": {
                      "isOptional": false,
                      "description": "Alias of the root password",
                      "defaultValue": "${{MYSQL_ROOT_PASSWORD}}"
                    },
                    "MYSQL_DATABASE": {
                      "isOptional": false,
                      "description": "Database created on first init",
                      "defaultValue": "railway"
                    },
                    "MYSQL_PUBLIC_URL": {
                      "description": "External connection string; empty host/port until a TCP proxy exists",
                      "defaultValue": "mysql://${{MYSQLUSER}}:${{MYSQL_ROOT_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{MYSQL_DATABASE}}"
                    },
                    "MYSQL_ROOT_PASSWORD": {
                      "isOptional": false,
                      "description": "Root password, generated once at init — read only when the data dir is created",
                      "defaultValue": "{{MYSQL_ROOT_PASSWORD}}"
                    }
                  },
                  "networking": {
                    "tcpProxies": {
                      "3306": {}
                    }
                  },
                  "volumeMounts": {
                    "b9e3c983-54eb-477d-a31c-e29997b3d6b5": {
                      "mountPath": "/var/lib/mysql"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "bagisto",
      "method": "GET",
      "path": "/up",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 3,
    "needs_volume": true
  },
  "generated_at": "2026-09-10T16:14:52.212Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-10T18:06:22.219Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_69e117ef2be84acd8473",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 181,
    "typical_build_seconds": 67,
    "typical_start_seconds": 82,
    "slowest_service": "bagisto"
  }
}
