{
  "manifest_version": "1.0.0",
  "template": {
    "id": "068ba650-b449-4c1e-a8b8-c9602a1a38f0",
    "slug": "buzz-inloop-studio",
    "name": "Buzz",
    "description": "Self-host Buzz Relay 0.2.0 with private, persistent Railway services",
    "url": "https://railway.com/deploy/buzz-inloop-studio",
    "upstream": {
      "image": "ghcr.io/block/buzz@sha256:a0f67203d71d15d237fa7517788799957c30c8acdb81cbcff711e07e951c2710"
    }
  },
  "services": [
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2.1"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "Buzz Relay",
      "source": {
        "image": "ghcr.io/block/buzz@sha256:a0f67203d71d15d237fa7517788799957c30c8acdb81cbcff711e07e951c2710"
      },
      "needs_volume": true,
      "volume_mount_path": "/data/git",
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Railway private hostname for Redis.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Private Redis port.",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Redis ACL username.",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Private Redis connection string used by Buzz.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Password used by Redis clients.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Generated password for this Redis deployment.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "PostgreSQL data directory inside the mounted volume.",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Railway private PostgreSQL hostname.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Private PostgreSQL port.",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "PostgreSQL user exposed to Railway tools.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "Database name exposed to Railway tools.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "Password exposed to PostgreSQL clients.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Database created during initialization.",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Private PostgreSQL connection string used by Buzz.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "PostgreSQL administrator user.",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "Lifetime in days for the generated PostgreSQL TLS certificate.",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Generated PostgreSQL password.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Grace period for clean PostgreSQL shutdown.",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "PORT",
      "service": "Buzz Relay",
      "description": "Public HTTP and WebSocket port used by Railway.",
      "secret": false,
      "strategy": "default",
      "default": "3000"
    },
    {
      "key": "RUST_LOG",
      "service": "Buzz Relay",
      "description": "Rust tracing filter for normal production diagnostics.",
      "secret": false,
      "strategy": "default",
      "default": "buzz_relay=info,buzz_db=info,buzz_auth=info,buzz_pubsub=info,tower_http=info"
    },
    {
      "key": "REDIS_URL",
      "service": "Buzz Relay",
      "description": "Private Redis connection from the bundled service.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RELAY_URL",
      "service": "Buzz Relay",
      "description": "Canonical public WebSocket URL and community host.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "DATABASE_URL",
      "service": "Buzz Relay",
      "description": "Private PostgreSQL connection from the bundled service.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "BUZZ_BIND_ADDR",
      "service": "Buzz Relay",
      "description": "Address and port for Buzz HTTP and WebSocket traffic.",
      "secret": false,
      "strategy": "default",
      "default": "0.0.0.0:3000"
    },
    {
      "key": "BUZZ_S3_BUCKET",
      "service": "Buzz Relay",
      "description": "Railway Bucket name reference.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "BUZZ_S3_REGION",
      "service": "Buzz Relay",
      "description": "Railway Bucket signing region.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_RUN_UID",
      "service": "Buzz Relay",
      "description": "Starts as root so Railway can initialize the mounted Git volume before Buzz drops privileges internally.",
      "secret": false,
      "strategy": "default",
      "default": "0"
    },
    {
      "key": "BUZZ_HEALTH_PORT",
      "service": "Buzz Relay",
      "description": "Internal port for dedicated liveness and readiness probes.",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "BUZZ_S3_ENDPOINT",
      "service": "Buzz Relay",
      "description": "S3-compatible Railway Bucket endpoint.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "BUZZ_AUTO_MIGRATE",
      "service": "Buzz Relay",
      "description": "Apply embedded database migrations during startup.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "BUZZ_CORS_ORIGINS",
      "service": "Buzz Relay",
      "description": "Allowed browser origin for the generated Railway domain.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "BUZZ_METRICS_PORT",
      "service": "Buzz Relay",
      "description": "Internal Prometheus metrics port.",
      "secret": false,
      "strategy": "default",
      "default": "9102"
    },
    {
      "key": "BUZZ_GIT_REPO_PATH",
      "service": "Buzz Relay",
      "description": "Persistent volume path for hosted Git repositories.",
      "secret": false,
      "strategy": "default",
      "default": "/data/git"
    },
    {
      "key": "BUZZ_S3_ACCESS_KEY",
      "service": "Buzz Relay",
      "description": "Railway Bucket access key reference.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "BUZZ_S3_SECRET_KEY",
      "service": "Buzz Relay",
      "description": "Railway Bucket secret key reference.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RELAY_OWNER_PUBKEY",
      "service": "Buzz Relay",
      "description": "Required 64-character hexadecimal Nostr public key for the initial owner. Never enter a private key.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "BUZZ_MEDIA_BASE_URL",
      "service": "Buzz Relay",
      "description": "Public URL used for media served through Buzz.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "BUZZ_ALLOW_NIP_OA_AUTH",
      "service": "Buzz Relay",
      "description": "Allow owner-attested NIP-OA authentication.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "BUZZ_RELAY_PRIVATE_KEY",
      "service": "Buzz Relay",
      "description": "Generated stable Nostr signing key for relay-authored events.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "BUZZ_REQUIRE_AUTH_TOKEN",
      "service": "Buzz Relay",
      "description": "Require NIP-42 authentication for protected relay operations.",
      "secret": true,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "BUZZ_MEDIA_SERVER_DOMAIN",
      "service": "Buzz Relay",
      "description": "Public host used in media metadata.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "BUZZ_GIT_HOOK_HMAC_SECRET",
      "service": "Buzz Relay",
      "description": "Generated HMAC secret for internal Git hook callbacks.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "BUZZ_GIT_CONFORMANCE_PROBE",
      "service": "Buzz Relay",
      "description": "Verify object-storage semantics before enabling the Git backend.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "BUZZ_REQUIRE_RELAY_MEMBERSHIP",
      "service": "Buzz Relay",
      "description": "Restrict the relay to the owner and invited members.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "buzz-inloop-studio"
      }
    },
    "cli": "railway deploy --template buzz-inloop-studio",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "068ba650-b449-4c1e-a8b8-c9602a1a38f0",
            "serializedConfig": {
              "buckets": {
                "2012ad5f-c7d4-4b64-af7e-ed25a068b82b": {
                  "name": "media"
                }
              },
              "services": {
                "0a321e1d-3817-4d59-9dd3-837a03c8ae2c": {
                  "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.1"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "description": "Railway private hostname for Redis.",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Private Redis port.",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Redis ACL username.",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private Redis connection string used by Buzz.",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Password used by Redis clients.",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated password for this Redis deployment.",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "0a321e1d-3817-4d59-9dd3-837a03c8ae2c": {
                      "mountPath": "/data",
                      "backupSchedules": [
                        "DAILY"
                      ]
                    }
                  },
                  "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."
                  }
                },
                "16d55994-e233-47a5-9a25-e8dd424d8fc4": {
                  "icon": "https://devicons.railway.app/i/postgresql.svg",
                  "name": "Postgres",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "PostgreSQL data directory inside the mounted volume.",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Railway private PostgreSQL hostname.",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Private PostgreSQL port.",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "PostgreSQL user exposed to Railway tools.",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "Database name exposed to Railway tools.",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "Password exposed to PostgreSQL clients.",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Database created during initialization.",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Private PostgreSQL connection string used by Buzz.",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "PostgreSQL administrator user.",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "Lifetime in days for the generated PostgreSQL TLS certificate.",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated PostgreSQL password.",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Grace period for clean PostgreSQL shutdown.",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "16d55994-e233-47a5-9a25-e8dd424d8fc4": {
                      "mountPath": "/var/lib/postgresql/data",
                      "backupSchedules": [
                        "DAILY"
                      ]
                    }
                  },
                  "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."
                  }
                },
                "fd5cb3a8-4a10-4948-8640-52c3382976c6": {
                  "icon": "https://raw.githubusercontent.com/inloopstudio-team/railway-template-buzz/f5a744d165fef09a44a9cbcb69113296170ccabf/assets/buzz-icon-v1.png",
                  "name": "Buzz Relay",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/_readiness",
                    "restartPolicyType": "ON_FAILURE",
                    "healthcheckTimeout": 300,
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/block/buzz@sha256:a0f67203d71d15d237fa7517788799957c30c8acdb81cbcff711e07e951c2710"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Public HTTP and WebSocket port used by Railway.",
                      "defaultValue": "3000"
                    },
                    "RUST_LOG": {
                      "isOptional": false,
                      "description": "Rust tracing filter for normal production diagnostics.",
                      "defaultValue": "buzz_relay=info,buzz_db=info,buzz_auth=info,buzz_pubsub=info,tower_http=info"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private Redis connection from the bundled service.",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "RELAY_URL": {
                      "isOptional": false,
                      "description": "Canonical public WebSocket URL and community host.",
                      "defaultValue": "wss://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Private PostgreSQL connection from the bundled service.",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "BUZZ_BIND_ADDR": {
                      "isOptional": false,
                      "description": "Address and port for Buzz HTTP and WebSocket traffic.",
                      "defaultValue": "0.0.0.0:3000"
                    },
                    "BUZZ_S3_BUCKET": {
                      "isOptional": false,
                      "description": "Railway Bucket name reference.",
                      "defaultValue": "${{media.BUCKET}}"
                    },
                    "BUZZ_S3_REGION": {
                      "isOptional": false,
                      "description": "Railway Bucket signing region.",
                      "defaultValue": "${{media.REGION}}"
                    },
                    "RAILWAY_RUN_UID": {
                      "isOptional": false,
                      "description": "Starts as root so Railway can initialize the mounted Git volume before Buzz drops privileges internally.",
                      "defaultValue": "0"
                    },
                    "BUZZ_HEALTH_PORT": {
                      "isOptional": false,
                      "description": "Internal port for dedicated liveness and readiness probes.",
                      "defaultValue": "8080"
                    },
                    "BUZZ_S3_ENDPOINT": {
                      "isOptional": false,
                      "description": "S3-compatible Railway Bucket endpoint.",
                      "defaultValue": "${{media.ENDPOINT}}"
                    },
                    "BUZZ_AUTO_MIGRATE": {
                      "isOptional": false,
                      "description": "Apply embedded database migrations during startup.",
                      "defaultValue": "true"
                    },
                    "BUZZ_CORS_ORIGINS": {
                      "isOptional": false,
                      "description": "Allowed browser origin for the generated Railway domain.",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "BUZZ_METRICS_PORT": {
                      "isOptional": false,
                      "description": "Internal Prometheus metrics port.",
                      "defaultValue": "9102"
                    },
                    "BUZZ_GIT_REPO_PATH": {
                      "isOptional": false,
                      "description": "Persistent volume path for hosted Git repositories.",
                      "defaultValue": "/data/git"
                    },
                    "BUZZ_S3_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Railway Bucket access key reference.",
                      "defaultValue": "${{media.ACCESS_KEY_ID}}"
                    },
                    "BUZZ_S3_SECRET_KEY": {
                      "isOptional": false,
                      "description": "Railway Bucket secret key reference.",
                      "defaultValue": "${{media.SECRET_ACCESS_KEY}}"
                    },
                    "RELAY_OWNER_PUBKEY": {
                      "isOptional": false,
                      "description": "Required 64-character hexadecimal Nostr public key for the initial owner. Never enter a private key.",
                      "defaultValue": "{{RELAY_OWNER_PUBKEY}}"
                    },
                    "BUZZ_MEDIA_BASE_URL": {
                      "isOptional": false,
                      "description": "Public URL used for media served through Buzz.",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}/media"
                    },
                    "BUZZ_ALLOW_NIP_OA_AUTH": {
                      "isOptional": false,
                      "description": "Allow owner-attested NIP-OA authentication.",
                      "defaultValue": "true"
                    },
                    "BUZZ_RELAY_PRIVATE_KEY": {
                      "isOptional": false,
                      "description": "Generated stable Nostr signing key for relay-authored events.",
                      "defaultValue": "{{BUZZ_RELAY_PRIVATE_KEY}}"
                    },
                    "BUZZ_REQUIRE_AUTH_TOKEN": {
                      "isOptional": false,
                      "description": "Require NIP-42 authentication for protected relay operations.",
                      "defaultValue": "true"
                    },
                    "BUZZ_MEDIA_SERVER_DOMAIN": {
                      "isOptional": false,
                      "description": "Public host used in media metadata.",
                      "defaultValue": "${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "BUZZ_GIT_HOOK_HMAC_SECRET": {
                      "isOptional": false,
                      "description": "Generated HMAC secret for internal Git hook callbacks.",
                      "defaultValue": "{{BUZZ_GIT_HOOK_HMAC_SECRET}}"
                    },
                    "BUZZ_GIT_CONFORMANCE_PROBE": {
                      "isOptional": false,
                      "description": "Verify object-storage semantics before enabling the Git backend.",
                      "defaultValue": "true"
                    },
                    "BUZZ_REQUIRE_RELAY_MEMBERSHIP": {
                      "isOptional": false,
                      "description": "Restrict the relay to the owner and invited members.",
                      "defaultValue": "true"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:3000": {
                        "port": 3000
                      }
                    }
                  },
                  "volumeMounts": {
                    "fd5cb3a8-4a10-4948-8640-52c3382976c6": {
                      "mountPath": "/data/git",
                      "backupSchedules": [
                        "DAILY"
                      ]
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "Buzz Relay",
      "method": "GET",
      "path": "/_readiness",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 3,
    "needs_volume": true
  },
  "generated_at": "2026-09-10T16:14:52.212Z",
  "generator_version": "0.1.0",
  "status": "degraded",
  "validated_at": "2026-09-08T22:50:59.725Z",
  "success_rate_30d": 0,
  "validation": {
    "last_run_id": "run_eda153351a86455d9ab8",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": false,
        "detail": "SUCCESS,FAILED,SUCCESS"
      }
    ]
  }
}
