{
  "manifest_version": "1.0.0",
  "template": {
    "id": "607408df-e066-460d-a81f-7e94797cdf91",
    "slug": "glitchtip-railway",
    "name": "GlitchTip",
    "description": "Sentry alternative. Error tracking and uptime monitoring",
    "url": "https://railway.com/deploy/glitchtip-railway",
    "upstream": {
      "image": "glitchtip/glitchtip:latest"
    }
  },
  "services": [
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "GlitchTip",
      "source": {
        "image": "glitchtip/glitchtip:latest"
      },
      "needs_volume": false,
      "http": true
    },
    {
      "name": "glitchtip-worker",
      "source": {
        "image": "glitchtip/glitchtip:latest"
      },
      "needs_volume": false,
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Data directory, a subdirectory of the volume mount",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Private hostname, reachable only inside the project",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Standard PostgreSQL port",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "libpq alias of the superuser name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "libpq alias of the default database",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "libpq alias of the superuser password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Default database created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "rRAILWAY_PRIVATE_DOMAINailway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Private connection string, use this from other services",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "Superuser created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "Validity window of the generated self-signed TLS certificate",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Generated superuser password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_PUBLIC_URL",
      "service": "Postgres",
      "description": "Public connection string over the TCP proxy, for external tools",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Grace period for in-flight connections on redeploy",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "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": "PORT",
      "service": "GlitchTip",
      "description": "HTTP listening port",
      "secret": false,
      "strategy": "default",
      "default": "8000"
    },
    {
      "key": "LOG_LEVEL",
      "service": "GlitchTip",
      "description": "Application log verbosity",
      "secret": false,
      "strategy": "default",
      "default": "INFO"
    },
    {
      "key": "SECRET_KEY",
      "service": "GlitchTip",
      "description": "Django session and token signing key",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "VALKEY_URL",
      "service": "GlitchTip",
      "description": "Queue, cache and session store",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SERVER_ROLE",
      "service": "GlitchTip",
      "description": "Run the web tier",
      "secret": false,
      "strategy": "default",
      "default": "web"
    },
    {
      "key": "DATABASE_URL",
      "service": "GlitchTip",
      "description": "PostgreSQL connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ALLOWED_HOSTS",
      "service": "GlitchTip",
      "description": "Accepted Host headers",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "GLITCHTIP_DOMAIN",
      "service": "GlitchTip",
      "description": "Public URL used in DSNs",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "AWS_ACCESS_KEY_ID",
      "service": "GlitchTip",
      "description": "Bucket access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AWS_S3_ENDPOINT_URL",
      "service": "GlitchTip",
      "description": "Object storage endpoint",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "CSRF_TRUSTED_ORIGINS",
      "service": "GlitchTip",
      "description": "Required behind Railway TLS",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "AWS_SECRET_ACCESS_KEY",
      "service": "GlitchTip",
      "description": "Bucket secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GLITCHTIP_EMBED_WORKER",
      "service": "GlitchTip",
      "description": "Worker runs as its own service",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "AWS_STORAGE_BUCKET_NAME",
      "service": "GlitchTip",
      "description": "Bucket for uploads",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GLITCHTIP_ENABLE_DUCKDB",
      "service": "GlitchTip",
      "description": "Archive old data to object storage",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "GLITCHTIP_INSTANCE_NAME",
      "service": "GlitchTip",
      "description": "Name shown in the interface",
      "secret": false,
      "strategy": "default",
      "default": "GlitchTip on Railway"
    },
    {
      "key": "ENABLE_USER_REGISTRATION",
      "service": "GlitchTip",
      "description": "Set false after creating your account",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "ENABLE_OPEN_USER_REGISTRATION",
      "service": "GlitchTip",
      "description": "Keep organization creation closed",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "LOG_LEVEL",
      "service": "glitchtip-worker",
      "description": "Quieter than web; uptime dispatch runs every second",
      "secret": false,
      "strategy": "default",
      "default": "WARNING"
    },
    {
      "key": "SECRET_KEY",
      "service": "glitchtip-worker",
      "description": "Must match the web service",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VALKEY_URL",
      "service": "glitchtip-worker",
      "description": "Queue, cache and session store",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SERVER_ROLE",
      "service": "glitchtip-worker",
      "description": "Run the queue and scheduler",
      "secret": false,
      "strategy": "default",
      "default": "worker"
    },
    {
      "key": "DATABASE_URL",
      "service": "glitchtip-worker",
      "description": "PostgreSQL connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GLITCHTIP_DOMAIN",
      "service": "glitchtip-worker",
      "description": "Public URL used in emails",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "AWS_ACCESS_KEY_ID",
      "service": "glitchtip-worker",
      "description": "Bucket access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AWS_S3_ENDPOINT_URL",
      "service": "glitchtip-worker",
      "description": "Object storage endpoint",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AWS_SECRET_ACCESS_KEY",
      "service": "glitchtip-worker",
      "description": "Bucket secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AWS_STORAGE_BUCKET_NAME",
      "service": "glitchtip-worker",
      "description": "Bucket for uploads",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GLITCHTIP_ENABLE_DUCKDB",
      "service": "glitchtip-worker",
      "description": "Archive old data to object storage",
      "secret": false,
      "strategy": "default",
      "default": "true"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "glitchtip-railway"
      }
    },
    "cli": "railway deploy --template glitchtip-railway",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "607408df-e066-460d-a81f-7e94797cdf91",
            "serializedConfig": {
              "buckets": {
                "fdff65ca-6800-44d0-a43c-4dc534dea987": {
                  "name": "glitchtip-storage"
                }
              },
              "services": {
                "5a7eed91-279b-4a35-89b1-015f21b035e3": {
                  "icon": "https://devicons.railway.app/i/postgresql.svg",
                  "name": "Postgres",
                  "deploy": {
                    "startCommand": "wrapper.sh postgres -p 5432 -c listen_addresses=* -c max_locks_per_transaction=512",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "Data directory, a subdirectory of the volume mount",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Private hostname, reachable only inside the project",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Standard PostgreSQL port",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "libpq alias of the superuser name",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "libpq alias of the default database",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "libpq alias of the superuser password",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Default database created on first boot",
                      "defaultValue": "rRAILWAY_PRIVATE_DOMAINailway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Private connection string, use this from other services",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Superuser created on first boot",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "Validity window of the generated self-signed TLS certificate",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated superuser password",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_PUBLIC_URL": {
                      "description": "Public connection string over the TCP proxy, for external tools",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{PGDATABASE}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Grace period for in-flight connections on redeploy",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "5a7eed91-279b-4a35-89b1-015f21b035e3": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "7773b23c-3522-4a43-8255-c39c6c086d83": {
                  "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}}"
                    }
                  },
                  "volumeMounts": {
                    "7773b23c-3522-4a43-8255-c39c6c086d83": {
                      "mountPath": "/data"
                    }
                  }
                },
                "9ff6db8f-82b4-4327-99d6-b982257d4f19": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/glitchtip.svg",
                  "name": "GlitchTip",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/api/settings/",
                    "preDeployCommand": [
                      "/bin/sh -c \"./manage.py migrate --no-input --skip-checks && ./manage.py maintain_partitions && ./manage.py createcachetable\""
                    ],
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "glitchtip/glitchtip:latest"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "HTTP listening port",
                      "defaultValue": "8000"
                    },
                    "LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Application log verbosity",
                      "defaultValue": "INFO"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Django session and token signing key",
                      "defaultValue": "{{SECRET_KEY}}"
                    },
                    "VALKEY_URL": {
                      "isOptional": false,
                      "description": "Queue, cache and session store",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "SERVER_ROLE": {
                      "isOptional": false,
                      "description": "Run the web tier",
                      "defaultValue": "web"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "PostgreSQL connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "ALLOWED_HOSTS": {
                      "isOptional": false,
                      "description": "Accepted Host headers",
                      "defaultValue": "${{RAILWAY_PUBLIC_DOMAIN}},${{RAILWAY_PRIVATE_DOMAIN}},healthcheck.railway.app,localhost"
                    },
                    "GLITCHTIP_DOMAIN": {
                      "isOptional": false,
                      "description": "Public URL used in DSNs",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "AWS_ACCESS_KEY_ID": {
                      "isOptional": false,
                      "description": "Bucket access key",
                      "defaultValue": "${{glitchtip-storage.ACCESS_KEY_ID}}"
                    },
                    "AWS_S3_ENDPOINT_URL": {
                      "isOptional": false,
                      "description": "Object storage endpoint",
                      "defaultValue": "${{glitchtip-storage.ENDPOINT}}"
                    },
                    "CSRF_TRUSTED_ORIGINS": {
                      "isOptional": false,
                      "description": "Required behind Railway TLS",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "AWS_SECRET_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Bucket secret key",
                      "defaultValue": "${{glitchtip-storage.SECRET_ACCESS_KEY}}"
                    },
                    "GLITCHTIP_EMBED_WORKER": {
                      "isOptional": false,
                      "description": "Worker runs as its own service",
                      "defaultValue": "false"
                    },
                    "AWS_STORAGE_BUCKET_NAME": {
                      "isOptional": false,
                      "description": "Bucket for uploads",
                      "defaultValue": "${{glitchtip-storage.BUCKET}}"
                    },
                    "GLITCHTIP_ENABLE_DUCKDB": {
                      "isOptional": false,
                      "description": "Archive old data to object storage",
                      "defaultValue": "true"
                    },
                    "GLITCHTIP_INSTANCE_NAME": {
                      "isOptional": false,
                      "description": "Name shown in the interface",
                      "defaultValue": "GlitchTip on Railway"
                    },
                    "ENABLE_USER_REGISTRATION": {
                      "isOptional": false,
                      "description": "Set false after creating your account",
                      "defaultValue": "true"
                    },
                    "ENABLE_OPEN_USER_REGISTRATION": {
                      "isOptional": false,
                      "description": "Keep organization creation closed",
                      "defaultValue": "false"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8000": {
                        "port": 8000
                      }
                    }
                  }
                },
                "d923ecfa-dbce-45c5-8f94-2b31cb9e40b6": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/glitchtip.svg",
                  "name": "glitchtip-worker",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "glitchtip/glitchtip:latest"
                  },
                  "variables": {
                    "LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Quieter than web; uptime dispatch runs every second",
                      "defaultValue": "WARNING"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Must match the web service",
                      "defaultValue": "${{GlitchTip.SECRET_KEY}}"
                    },
                    "VALKEY_URL": {
                      "isOptional": false,
                      "description": "Queue, cache and session store",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "SERVER_ROLE": {
                      "isOptional": false,
                      "description": "Run the queue and scheduler",
                      "defaultValue": "worker"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "PostgreSQL connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "GLITCHTIP_DOMAIN": {
                      "isOptional": false,
                      "description": "Public URL used in emails",
                      "defaultValue": "https://${{GlitchTip.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "AWS_ACCESS_KEY_ID": {
                      "isOptional": false,
                      "description": "Bucket access key",
                      "defaultValue": "${{glitchtip-storage.ACCESS_KEY_ID}}"
                    },
                    "AWS_S3_ENDPOINT_URL": {
                      "isOptional": false,
                      "description": "Object storage endpoint",
                      "defaultValue": "${{glitchtip-storage.ENDPOINT}}"
                    },
                    "AWS_SECRET_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Bucket secret key",
                      "defaultValue": "${{glitchtip-storage.SECRET_ACCESS_KEY}}"
                    },
                    "AWS_STORAGE_BUCKET_NAME": {
                      "isOptional": false,
                      "description": "Bucket for uploads",
                      "defaultValue": "${{glitchtip-storage.BUCKET}}"
                    },
                    "GLITCHTIP_ENABLE_DUCKDB": {
                      "isOptional": false,
                      "description": "Archive old data to object storage",
                      "defaultValue": "true"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "GlitchTip",
      "method": "GET",
      "path": "/api/settings/",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 4,
    "needs_volume": true
  },
  "generated_at": "2026-09-10T10:14:45.332Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-04T13:54:21.501Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_96a8a98352bd46cabb6f",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 113,
    "typical_build_seconds": 0,
    "typical_start_seconds": 10,
    "slowest_service": "glitchtip-worker"
  }
}
