{
  "manifest_version": "1.0.0",
  "template": {
    "id": "faeac98d-0a9c-4e63-a7c1-4b80e4d7b145",
    "slug": "octobox",
    "name": "Octobox",
    "description": "Inbox for your GitHub notifications, with archiving and search",
    "url": "https://railway.com/deploy/octobox",
    "upstream": {
      "repo_url": "https://github.com/gridalpha/octobox-railway"
    }
  },
  "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": "octobox",
      "source": {
        "repo": "https://github.com/gridalpha/octobox-railway"
      },
      "needs_volume": false,
      "http": true
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "octobox-worker",
      "source": {
        "repo": "https://github.com/gridalpha/octobox-railway"
      },
      "needs_volume": false,
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Cluster location on the volume",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Database created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Private connection string",
      "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": "SSL certificate expiry in days",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Superuser password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "PORT",
      "service": "octobox",
      "description": "HTTP listener and healthcheck port",
      "secret": false,
      "strategy": "default",
      "default": "3000"
    },
    {
      "key": "FORCE_SSL",
      "service": "octobox",
      "description": "HSTS and Secure session cookie",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILS_ENV",
      "service": "octobox",
      "description": "Rails environment",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "REDIS_URL",
      "service": "octobox",
      "description": "Redis connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SOURCE_REPO",
      "service": "octobox",
      "description": "AGPL modified-source link",
      "secret": false,
      "strategy": "default",
      "default": "https://github.com/gridalpha/octobox-railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "octobox",
      "description": "Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "OCTOBOX_ROLE",
      "service": "octobox",
      "description": "Runs the Puma web tier",
      "secret": false,
      "strategy": "default",
      "default": "web"
    },
    {
      "key": "SECRET_KEY_BASE",
      "service": "octobox",
      "description": "Rails session and cookie signing key",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "WEB_CONCURRENCY",
      "service": "octobox",
      "description": "Puma cluster worker processes",
      "secret": false,
      "strategy": "default",
      "default": "2"
    },
    {
      "key": "RAILS_MAX_THREADS",
      "service": "octobox",
      "description": "Puma threads and ActiveRecord pool size",
      "secret": false,
      "strategy": "default",
      "default": "5"
    },
    {
      "key": "PUSH_NOTIFICATIONS",
      "service": "octobox",
      "description": "Action Cable live row updates",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILS_LOG_TO_STDOUT",
      "service": "octobox",
      "description": "Send logs to the deploy log",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "MINIMUM_REFRESH_INTERVAL",
      "service": "octobox",
      "description": "Lowest user auto-refresh interval, minutes",
      "secret": false,
      "strategy": "default",
      "default": "10"
    },
    {
      "key": "RAILS_SERVE_STATIC_FILES",
      "service": "octobox",
      "description": "Serve precompiled assets; no nginx in front",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "WEBSOCKET_ALLOWED_ORIGINS",
      "service": "octobox",
      "description": "Allowed Action Cable origins",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "PERSONAL_ACCESS_TOKENS_ENABLED",
      "service": "octobox",
      "description": "Let users add their own GitHub token",
      "secret": true,
      "strategy": "default",
      "default": "1"
    },
    {
      "key": "OCTOBOX_BACKGROUND_JOBS_ENABLED",
      "service": "octobox",
      "description": "Enqueue syncs instead of running them inline",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "OCTOBOX_ATTRIBUTE_ENCRYPTION_KEY",
      "service": "octobox",
      "description": "Encrypts stored GitHub tokens; exactly 32 chars",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "OCTOBOX_SIDEKIQ_SCHEDULE_ENABLED",
      "service": "octobox",
      "description": "Enables the sidekiq-scheduler cron",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Private connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Auth password, read by the server",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "PORT",
      "service": "octobox-worker",
      "description": "Health probe listener, private only",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "FORCE_SSL",
      "service": "octobox-worker",
      "description": "Matches the web tier",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILS_ENV",
      "service": "octobox-worker",
      "description": "Rails environment",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "REDIS_URL",
      "service": "octobox-worker",
      "description": "Sidekiq queue connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SOURCE_REPO",
      "service": "octobox-worker",
      "description": "AGPL modified-source link",
      "secret": false,
      "strategy": "default",
      "default": "https://github.com/gridalpha/octobox-railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "octobox-worker",
      "description": "Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "OCTOBOX_ROLE",
      "service": "octobox-worker",
      "description": "Runs Sidekiq instead of Puma",
      "secret": false,
      "strategy": "default",
      "default": "worker"
    },
    {
      "key": "SECRET_KEY_BASE",
      "service": "octobox-worker",
      "description": "Must match the web tier",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILS_MAX_THREADS",
      "service": "octobox-worker",
      "description": "Sidekiq concurrency and pool size",
      "secret": false,
      "strategy": "default",
      "default": "5"
    },
    {
      "key": "RAILS_LOG_TO_STDOUT",
      "service": "octobox-worker",
      "description": "Send logs to the deploy log",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILS_SERVE_STATIC_FILES",
      "service": "octobox-worker",
      "description": "Matches the web tier's asset config",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "OCTOBOX_WORKER_PROBE_GRACE",
      "service": "octobox-worker",
      "description": "Probe grace while Sidekiq boots, seconds",
      "secret": false,
      "strategy": "default",
      "default": "120"
    },
    {
      "key": "OCTOBOX_BACKGROUND_JOBS_ENABLED",
      "service": "octobox-worker",
      "description": "Required for Sidekiq server config",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "OCTOBOX_ATTRIBUTE_ENCRYPTION_KEY",
      "service": "octobox-worker",
      "description": "Must match the web tier",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "OCTOBOX_SIDEKIQ_SCHEDULE_ENABLED",
      "service": "octobox-worker",
      "description": "Ten-minute notification sync cron",
      "secret": false,
      "strategy": "default",
      "default": "true"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "octobox"
      }
    },
    "cli": "railway deploy --template octobox",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "faeac98d-0a9c-4e63-a7c1-4b80e4d7b145",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "3120c970-599d-431b-9a58-df11874ded10": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/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": "Cluster location on the volume",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Database created on first boot",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Private connection string",
                      "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": "SSL certificate expiry in days",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Superuser password",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "3120c970-599d-431b-9a58-df11874ded10": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "3168de2c-94ee-452d-9a4a-6fbba26afce9": {
                  "icon": "https://cdn.jsdelivr.net/gh/octobox/octobox@main/app/assets/images/infinitacle-round.svg",
                  "name": "octobox",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/healthz",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/octobox-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "HTTP listener and healthcheck port",
                      "defaultValue": "3000"
                    },
                    "FORCE_SSL": {
                      "isOptional": false,
                      "description": "HSTS and Secure session cookie",
                      "defaultValue": "true"
                    },
                    "RAILS_ENV": {
                      "isOptional": false,
                      "description": "Rails environment",
                      "defaultValue": "production"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Redis connection string",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "SOURCE_REPO": {
                      "isOptional": false,
                      "description": "AGPL modified-source link",
                      "defaultValue": "https://github.com/gridalpha/octobox-railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Postgres connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "OCTOBOX_ROLE": {
                      "isOptional": false,
                      "description": "Runs the Puma web tier",
                      "defaultValue": "web"
                    },
                    "SECRET_KEY_BASE": {
                      "isOptional": false,
                      "description": "Rails session and cookie signing key",
                      "defaultValue": "{{SECRET_KEY_BASE}}"
                    },
                    "WEB_CONCURRENCY": {
                      "isOptional": false,
                      "description": "Puma cluster worker processes",
                      "defaultValue": "2"
                    },
                    "GITHUB_CLIENT_ID": {
                      "isOptional": true,
                      "description": "GitHub OAuth app client id; required for sign-in",
                      "defaultValue": ""
                    },
                    "RAILS_MAX_THREADS": {
                      "isOptional": false,
                      "description": "Puma threads and ActiveRecord pool size",
                      "defaultValue": "5"
                    },
                    "PUSH_NOTIFICATIONS": {
                      "isOptional": false,
                      "description": "Action Cable live row updates",
                      "defaultValue": "true"
                    },
                    "RAILS_LOG_TO_STDOUT": {
                      "isOptional": false,
                      "description": "Send logs to the deploy log",
                      "defaultValue": "true"
                    },
                    "GITHUB_CLIENT_SECRET": {
                      "isOptional": true,
                      "description": "GitHub OAuth app client secret",
                      "defaultValue": ""
                    },
                    "MINIMUM_REFRESH_INTERVAL": {
                      "isOptional": false,
                      "description": "Lowest user auto-refresh interval, minutes",
                      "defaultValue": "10"
                    },
                    "RAILS_SERVE_STATIC_FILES": {
                      "isOptional": false,
                      "description": "Serve precompiled assets; no nginx in front",
                      "defaultValue": "true"
                    },
                    "WEBSOCKET_ALLOWED_ORIGINS": {
                      "isOptional": false,
                      "description": "Allowed Action Cable origins",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "PERSONAL_ACCESS_TOKENS_ENABLED": {
                      "isOptional": false,
                      "description": "Let users add their own GitHub token",
                      "defaultValue": "1"
                    },
                    "OCTOBOX_BACKGROUND_JOBS_ENABLED": {
                      "isOptional": false,
                      "description": "Enqueue syncs instead of running them inline",
                      "defaultValue": "true"
                    },
                    "OCTOBOX_ATTRIBUTE_ENCRYPTION_KEY": {
                      "isOptional": false,
                      "description": "Encrypts stored GitHub tokens; exactly 32 chars",
                      "defaultValue": "{{OCTOBOX_ATTRIBUTE_ENCRYPTION_KEY}}"
                    },
                    "OCTOBOX_SIDEKIQ_SCHEDULE_ENABLED": {
                      "isOptional": false,
                      "description": "Enables the sidekiq-scheduler cron",
                      "defaultValue": "true"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:3000": {
                        "port": 3000
                      }
                    }
                  }
                },
                "729a4c14-119e-4cf6-876e-4b73885a9c70": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/redis.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": "Data panel alias, not read by the server",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private connection string",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Auth password, read by the server",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "729a4c14-119e-4cf6-876e-4b73885a9c70": {
                      "mountPath": "/data"
                    }
                  }
                },
                "e0637704-2952-48cb-9eb2-b90ef0a83e0f": {
                  "icon": "https://cdn.jsdelivr.net/gh/octobox/octobox@main/app/assets/images/infinitacle-round.svg",
                  "name": "octobox-worker",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/healthz",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/octobox-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Health probe listener, private only",
                      "defaultValue": "8080"
                    },
                    "FORCE_SSL": {
                      "isOptional": false,
                      "description": "Matches the web tier",
                      "defaultValue": "true"
                    },
                    "RAILS_ENV": {
                      "isOptional": false,
                      "description": "Rails environment",
                      "defaultValue": "production"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Sidekiq queue connection",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "SOURCE_REPO": {
                      "isOptional": false,
                      "description": "AGPL modified-source link",
                      "defaultValue": "https://github.com/gridalpha/octobox-railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Postgres connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "OCTOBOX_ROLE": {
                      "isOptional": false,
                      "description": "Runs Sidekiq instead of Puma",
                      "defaultValue": "worker"
                    },
                    "SECRET_KEY_BASE": {
                      "isOptional": false,
                      "description": "Must match the web tier",
                      "defaultValue": "${{octobox.SECRET_KEY_BASE}}"
                    },
                    "RAILS_MAX_THREADS": {
                      "isOptional": false,
                      "description": "Sidekiq concurrency and pool size",
                      "defaultValue": "5"
                    },
                    "RAILS_LOG_TO_STDOUT": {
                      "isOptional": false,
                      "description": "Send logs to the deploy log",
                      "defaultValue": "true"
                    },
                    "RAILS_SERVE_STATIC_FILES": {
                      "isOptional": false,
                      "description": "Matches the web tier's asset config",
                      "defaultValue": "true"
                    },
                    "OCTOBOX_WORKER_PROBE_GRACE": {
                      "isOptional": false,
                      "description": "Probe grace while Sidekiq boots, seconds",
                      "defaultValue": "120"
                    },
                    "OCTOBOX_BACKGROUND_JOBS_ENABLED": {
                      "isOptional": false,
                      "description": "Required for Sidekiq server config",
                      "defaultValue": "true"
                    },
                    "OCTOBOX_ATTRIBUTE_ENCRYPTION_KEY": {
                      "isOptional": false,
                      "description": "Must match the web tier",
                      "defaultValue": "${{octobox.OCTOBOX_ATTRIBUTE_ENCRYPTION_KEY}}"
                    },
                    "OCTOBOX_SIDEKIQ_SCHEDULE_ENABLED": {
                      "isOptional": false,
                      "description": "Ten-minute notification sync cron",
                      "defaultValue": "true"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "octobox",
      "method": "GET",
      "path": "/healthz",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 4,
    "needs_volume": true
  },
  "generated_at": "2026-09-16T22:14:52.145Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-16T20:45:33.817Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_fe00d91aaf344157860d",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 169,
    "typical_build_seconds": 50,
    "typical_start_seconds": 81,
    "slowest_service": "octobox-worker"
  }
}
