{
  "manifest_version": "1.0.0",
  "template": {
    "id": "233974b3-a557-42c1-af47-42fd7b15c0bb",
    "slug": "chatwoot-latest",
    "name": "Chatwoot App - Customer Support Platform",
    "description": "Deploy and host Latest Chatwoot on railway",
    "url": "https://railway.com/deploy/chatwoot-latest"
  },
  "services": [
    {
      "name": "Chatwoot",
      "source": {
        "image": "chatwoot/chatwoot:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/app/storage",
      "http": false
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2.1"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "PgVector",
      "source": {
        "image": "pgvector/pgvector:pg18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql",
      "tcp_ports": [
        5432
      ],
      "http": false
    },
    {
      "name": "SideKiq",
      "source": {
        "image": "chatwoot/chatwoot:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/app/storage",
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "Chatwoot",
      "description": "HTTP server listening port",
      "secret": false,
      "strategy": "default",
      "default": "3000"
    },
    {
      "key": "NODE_ENV",
      "service": "Chatwoot",
      "description": "Run Node.js in production mode",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "FORCE_SSL",
      "service": "Chatwoot",
      "description": "Disable forced HTTPS redirects",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "LOG_LEVEL",
      "service": "Chatwoot",
      "description": "Logging verbosity level",
      "secret": false,
      "strategy": "default",
      "default": "info"
    },
    {
      "key": "RAILS_ENV",
      "service": "Chatwoot",
      "description": "Run Rails in production mode",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "REDIS_URL",
      "service": "Chatwoot",
      "description": "Redis connection string for queues",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "FRONTEND_URL",
      "service": "Chatwoot",
      "description": "Public URL of Chatwoot instance",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "POSTGRES_HOST",
      "service": "Chatwoot",
      "description": "Hostname of Postgres database",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_PORT",
      "service": "Chatwoot",
      "description": "Postgres server port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SECRET_KEY_BASE",
      "service": "Chatwoot",
      "description": "Secret used for Rails sessions",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "INSTALLATION_ENV",
      "service": "Chatwoot",
      "description": "Deployment environment identifier",
      "secret": false,
      "strategy": "default",
      "default": "docker"
    },
    {
      "key": "POSTGRES_SSLMODE",
      "service": "Chatwoot",
      "description": "Require SSL for database connection",
      "secret": false,
      "strategy": "default",
      "default": "require"
    },
    {
      "key": "POSTGRES_DATABASE",
      "service": "Chatwoot",
      "description": "Database name used by Chatwoot",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Chatwoot",
      "description": "Password for Postgres authentication",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_USERNAME",
      "service": "Chatwoot",
      "description": "Username for Postgres authentication",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_SSL_VERIFY",
      "service": "Chatwoot",
      "description": "Disable SSL certificate verification",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "RAILS_LOG_TO_STDOUT",
      "service": "Chatwoot",
      "description": "Send Rails logs to stdout",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "ACTIVE_STORAGE_SERVICE",
      "service": "Chatwoot",
      "description": "File storage backend for attachments",
      "secret": false,
      "strategy": "default",
      "default": "local"
    },
    {
      "key": "ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY",
      "service": "Chatwoot",
      "description": "Primary encryption key for database",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY",
      "service": "Chatwoot",
      "description": "Deterministic encryption key",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT",
      "service": "Chatwoot",
      "description": "Salt used for encryption key derivation",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Provide a value for REDISHOST.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Provide a value for REDISPORT.",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Provide a value for REDISUSER.",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Connection string for connecting to redis using the private network",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Provide a value for REDISPASSWORD.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Provide a value for REDIS_PASSWORD.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "REDIS_PUBLIC_URL",
      "service": "Redis",
      "description": "Connection string for connecting to redis externally",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATA",
      "service": "PgVector",
      "description": "Directory storing database files",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "PgVector",
      "description": "Public Postgres hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPORT",
      "service": "PgVector",
      "description": "Public Postgres connection port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGUSER",
      "service": "PgVector",
      "description": "Postgres database username",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "PgVector",
      "description": "Default Postgres database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "PgVector",
      "description": "Password for Postgres authentication",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "PgVector",
      "description": "Database created on initialization",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "PgVector",
      "description": "Public Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_USER",
      "service": "PgVector",
      "description": "Default Postgres admin username",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "PgVector",
      "description": "SSL certificate validity duration",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "PGHOST_PRIVATE",
      "service": "PgVector",
      "description": "Internal Postgres hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT_PRIVATE",
      "service": "PgVector",
      "description": "Internal Postgres port",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "PgVector",
      "description": "Generated password for Postgres user",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_URL_PRIVATE",
      "service": "PgVector",
      "description": "Internal Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "PgVector",
      "description": "Graceful shutdown draining time",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "LOG_LEVEL",
      "service": "SideKiq",
      "description": "Logging verbosity level",
      "secret": false,
      "strategy": "default",
      "default": "info"
    },
    {
      "key": "RAILS_ENV",
      "service": "SideKiq",
      "description": "Run Rails in production mode",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "REDIS_URL",
      "service": "SideKiq",
      "description": "Redis connection string for background jobs",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "FRONTEND_URL",
      "service": "SideKiq",
      "description": "Public URL of Chatwoot instance",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_HOST",
      "service": "SideKiq",
      "description": "Hostname of Postgres database",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_PORT",
      "service": "SideKiq",
      "description": "Postgres server port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SECRET_KEY_BASE",
      "service": "SideKiq",
      "description": "Shared Rails secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "INSTALLATION_ENV",
      "service": "SideKiq",
      "description": "Deployment environment identifier",
      "secret": false,
      "strategy": "default",
      "default": "docker"
    },
    {
      "key": "POSTGRES_SSLMODE",
      "service": "SideKiq",
      "description": "Require SSL for database connection",
      "secret": false,
      "strategy": "default",
      "default": "require"
    },
    {
      "key": "POSTGRES_DATABASE",
      "service": "SideKiq",
      "description": "Database name used by Chatwoot",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "SideKiq",
      "description": "Password for Postgres authentication",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_USERNAME",
      "service": "SideKiq",
      "description": "Username for Postgres authentication",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_SSL_VERIFY",
      "service": "SideKiq",
      "description": "Disable SSL certificate verification",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "RAILS_LOG_TO_STDOUT",
      "service": "SideKiq",
      "description": "Send Rails logs to stdout",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY",
      "service": "SideKiq",
      "description": "Shared primary encryption key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY",
      "service": "SideKiq",
      "description": "Shared deterministic encryption key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT",
      "service": "SideKiq",
      "description": "Shared key derivation salt",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "chatwoot-latest"
      }
    },
    "cli": "railway deploy --template chatwoot-latest",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "233974b3-a557-42c1-af47-42fd7b15c0bb",
            "serializedConfig": {
              "services": {
                "3ca0cfbc-31a7-456d-9d86-3f9ce2f5bf6b": {
                  "name": "Chatwoot",
                  "deploy": {
                    "startCommand": "bundle exec rails s -p 3000 -b 0.0.0.0",
                    "preDeployCommand": [
                      "bundle exec rails db:chatwoot_prepare"
                    ]
                  },
                  "source": {
                    "image": "chatwoot/chatwoot:latest"
                  },
                  "variables": {
                    "PORT": {
                      "description": "HTTP server listening port",
                      "defaultValue": "3000"
                    },
                    "NODE_ENV": {
                      "description": "Run Node.js in production mode",
                      "defaultValue": "production"
                    },
                    "FORCE_SSL": {
                      "description": "Disable forced HTTPS redirects",
                      "defaultValue": "false"
                    },
                    "LOG_LEVEL": {
                      "description": "Logging verbosity level",
                      "defaultValue": "info"
                    },
                    "RAILS_ENV": {
                      "description": "Run Rails in production mode",
                      "defaultValue": "production"
                    },
                    "REDIS_URL": {
                      "description": "Redis connection string for queues",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "FRONTEND_URL": {
                      "description": "Public URL of Chatwoot instance",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "POSTGRES_HOST": {
                      "description": "Hostname of Postgres database",
                      "defaultValue": "${{PgVector.PGHOST}}"
                    },
                    "POSTGRES_PORT": {
                      "description": "Postgres server port",
                      "defaultValue": "${{PgVector.PGPORT}}"
                    },
                    "SECRET_KEY_BASE": {
                      "description": "Secret used for Rails sessions",
                      "defaultValue": "{{SECRET_KEY_BASE}}"
                    },
                    "INSTALLATION_ENV": {
                      "description": "Deployment environment identifier",
                      "defaultValue": "docker"
                    },
                    "POSTGRES_SSLMODE": {
                      "description": "Require SSL for database connection",
                      "defaultValue": "require"
                    },
                    "POSTGRES_DATABASE": {
                      "description": "Database name used by Chatwoot",
                      "defaultValue": "${{PgVector.PGDATABASE}}"
                    },
                    "POSTGRES_PASSWORD": {
                      "description": "Password for Postgres authentication",
                      "defaultValue": "${{PgVector.PGPASSWORD}}"
                    },
                    "POSTGRES_USERNAME": {
                      "description": "Username for Postgres authentication",
                      "defaultValue": "${{PgVector.PGUSER}}"
                    },
                    "DATABASE_SSL_VERIFY": {
                      "description": "Disable SSL certificate verification",
                      "defaultValue": "false"
                    },
                    "RAILS_LOG_TO_STDOUT": {
                      "description": "Send Rails logs to stdout",
                      "defaultValue": "true"
                    },
                    "ACTIVE_STORAGE_SERVICE": {
                      "description": "File storage backend for attachments",
                      "defaultValue": "local"
                    },
                    "ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY": {
                      "description": "Primary encryption key for database",
                      "defaultValue": "{{ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY}}"
                    },
                    "ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY": {
                      "description": "Deterministic encryption key",
                      "defaultValue": "{{ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY}}"
                    },
                    "ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT": {
                      "description": "Salt used for encryption key derivation",
                      "defaultValue": "{{ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT}}"
                    }
                  },
                  "volumeMounts": {
                    "3ca0cfbc-31a7-456d-9d86-3f9ce2f5bf6b": {
                      "mountPath": "/app/storage"
                    }
                  }
                },
                "84128952-07f3-46d2-b22c-554b05121edf": {
                  "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\""
                  },
                  "source": {
                    "image": "redis:8.2.1"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Connection string for connecting to redis using the private network",
                      "defaultValue": "redis://${{ REDISUSER }}:${{ REDIS_PASSWORD }}@${{ REDISHOST }}:${{ REDISPORT }}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    },
                    "REDIS_PUBLIC_URL": {
                      "description": "Connection string for connecting to redis externally",
                      "defaultValue": "redis://default:${{ REDIS_PASSWORD }}@${{ RAILWAY_TCP_PROXY_DOMAIN }}:${{ RAILWAY_TCP_PROXY_PORT }}"
                    }
                  },
                  "networking": {},
                  "volumeMounts": {
                    "84128952-07f3-46d2-b22c-554b05121edf": {
                      "mountPath": "/data"
                    }
                  },
                  "haTemplateCode": "redis-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxies",
                      "options": [
                        1,
                        2
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "HAProxy instances routing writes to the primary",
                      "defaultValue": 2
                    },
                    "replica": {
                      "label": "Redis Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "Redis",
                      "description": "Nodes running Redis + colocated Sentinel",
                      "defaultValue": 2
                    },
                    "internal": null,
                    "description": "This will convert your Redis instance to an HA cluster with Sentinel failover and HAProxy routing to the primary."
                  }
                },
                "8d96aa30-f22c-4cea-ba30-f24c6da329e4": {
                  "name": "PgVector",
                  "deploy": {
                    "startCommand": "/bin/sh -c \"unset PGPORT; docker-entrypoint.sh postgres --port=5432\""
                  },
                  "source": {
                    "image": "pgvector/pgvector:pg18"
                  },
                  "variables": {
                    "PGDATA": {
                      "description": "Directory storing database files",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "description": "Public Postgres hostname",
                      "defaultValue": "${{RAILWAY_TCP_PROXY_DOMAIN}}"
                    },
                    "PGPORT": {
                      "description": "Public Postgres connection port",
                      "defaultValue": "${{RAILWAY_TCP_PROXY_PORT}}"
                    },
                    "PGUSER": {
                      "description": "Postgres database username",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "description": "Default Postgres database name",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "description": "Password for Postgres authentication",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "description": "Database created on initialization",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "description": "Public Postgres connection string",
                      "defaultValue": "postgres://${{PGUSER}}:${{PGPASSWORD}}@${{PGHOST}}:${{PGPORT}}/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "description": "Default Postgres admin username",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "description": "SSL certificate validity duration",
                      "defaultValue": "820"
                    },
                    "PGHOST_PRIVATE": {
                      "description": "Internal Postgres hostname",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT_PRIVATE": {
                      "description": "Internal Postgres port",
                      "defaultValue": "5432"
                    },
                    "POSTGRES_PASSWORD": {
                      "description": "Generated password for Postgres user",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_URL_PRIVATE": {
                      "description": "Internal Postgres connection string",
                      "defaultValue": "postgres://${{PGUSER}}:${{PGPASSWORD}}@${{PGHOST_PRIVATE}}:${{PGPORT_PRIVATE}}/${{PGDATABASE}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "description": "Graceful shutdown draining time",
                      "defaultValue": "60"
                    }
                  },
                  "networking": {
                    "tcpProxies": {
                      "5432": {}
                    }
                  },
                  "volumeMounts": {
                    "8d96aa30-f22c-4cea-ba30-f24c6da329e4": {
                      "mountPath": "/var/lib/postgresql"
                    }
                  }
                },
                "e0c727de-afa2-4311-9aef-1cb7758238b6": {
                  "name": "SideKiq",
                  "deploy": {
                    "startCommand": "bundle exec sidekiq -C config/sidekiq.yml"
                  },
                  "source": {
                    "image": "chatwoot/chatwoot:latest"
                  },
                  "variables": {
                    "LOG_LEVEL": {
                      "description": "Logging verbosity level",
                      "defaultValue": "info"
                    },
                    "RAILS_ENV": {
                      "description": "Run Rails in production mode",
                      "defaultValue": "production"
                    },
                    "REDIS_URL": {
                      "description": "Redis connection string for background jobs",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "FRONTEND_URL": {
                      "description": "Public URL of Chatwoot instance",
                      "defaultValue": "${{Chatwoot.FRONTEND_URL}}"
                    },
                    "POSTGRES_HOST": {
                      "description": "Hostname of Postgres database",
                      "defaultValue": "${{PgVector.PGHOST}}"
                    },
                    "POSTGRES_PORT": {
                      "description": "Postgres server port",
                      "defaultValue": "${{PgVector.PGPORT}}"
                    },
                    "SECRET_KEY_BASE": {
                      "description": "Shared Rails secret key",
                      "defaultValue": "${{Chatwoot.SECRET_KEY_BASE}}"
                    },
                    "INSTALLATION_ENV": {
                      "description": "Deployment environment identifier",
                      "defaultValue": "docker"
                    },
                    "POSTGRES_SSLMODE": {
                      "description": "Require SSL for database connection",
                      "defaultValue": "require"
                    },
                    "POSTGRES_DATABASE": {
                      "description": "Database name used by Chatwoot",
                      "defaultValue": "${{PgVector.PGDATABASE}}"
                    },
                    "POSTGRES_PASSWORD": {
                      "description": "Password for Postgres authentication",
                      "defaultValue": "${{PgVector.PGPASSWORD}}"
                    },
                    "POSTGRES_USERNAME": {
                      "description": "Username for Postgres authentication",
                      "defaultValue": "${{PgVector.PGUSER}}"
                    },
                    "DATABASE_SSL_VERIFY": {
                      "description": "Disable SSL certificate verification",
                      "defaultValue": "false"
                    },
                    "RAILS_LOG_TO_STDOUT": {
                      "description": "Send Rails logs to stdout",
                      "defaultValue": "true"
                    },
                    "ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY": {
                      "description": "Shared primary encryption key",
                      "defaultValue": "${{Chatwoot.ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY}}"
                    },
                    "ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY": {
                      "description": "Shared deterministic encryption key",
                      "defaultValue": "${{Chatwoot.ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY}}"
                    },
                    "ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT": {
                      "description": "Shared key derivation salt",
                      "defaultValue": "${{Chatwoot.ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT}}"
                    }
                  },
                  "volumeMounts": {
                    "e0c727de-afa2-4311-9aef-1cb7758238b6": {
                      "mountPath": "/app/storage"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {},
  "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-08T19:06:01.351Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_f863ee4ea72643a98e38",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 134,
    "typical_build_seconds": 0,
    "typical_start_seconds": 10,
    "slowest_service": "SideKiq"
  }
}
