{
  "manifest_version": "1.0.0",
  "template": {
    "id": "c42fc3d4-78b8-4fa7-82d9-d7f1b30bd636",
    "slug": "baserow-airtable-alternative",
    "name": "Baserow (Distributed Arch.) | Open Source Airtable Alternative on Railway",
    "description": "Self Host Baserow. No-code database with automations, API, & more",
    "url": "https://railway.com/deploy/baserow-airtable-alternative",
    "upstream": {
      "image": "baserow/backend:2.2.0"
    }
  },
  "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": "Baserow Backend",
      "source": {
        "image": "baserow/backend:2.2.0"
      },
      "needs_volume": true,
      "volume_mount_path": "/baserow/media",
      "http": true
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2.1"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "Celery Beat",
      "source": {
        "image": "baserow/backend:2.2.0"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "Baserow Frontend",
      "source": {
        "image": "baserow/web-frontend:2.2.0"
      },
      "needs_volume": false,
      "http": true
    },
    {
      "name": "Celery Worker",
      "source": {
        "image": "baserow/backend:2.2.0"
      },
      "needs_volume": false,
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Postgres data storage directory",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Internal Postgres host address",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Postgres server listening port",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "Default Postgres username",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "Default database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "Password for Postgres user",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Initial database created on startup",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Internal Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "Default database superuser name",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "Self-signed SSL certificate validity",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Postgres database user password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_PUBLIC_URL",
      "service": "Postgres",
      "description": "Public Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Graceful shutdown draining duration",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "REDIS_URL",
      "service": "Baserow Backend",
      "description": "Redis connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SECRET_KEY",
      "service": "Baserow Backend",
      "description": "Django signing key for sessions",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "DATABASE_URL",
      "service": "Baserow Backend",
      "description": "PostgreSQL connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PUBLIC_BACKEND_URL",
      "service": "Baserow Backend",
      "description": "Public API URL for browser requests",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "BASEROW_BACKEND_DEBUG",
      "service": "Baserow Backend",
      "description": "Disable Django debug mode",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "PUBLIC_WEB_FRONTEND_URL",
      "service": "Baserow Backend",
      "description": "Public frontend URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "BASEROW_BACKEND_LOG_LEVEL",
      "service": "Baserow Backend",
      "description": "Reduce backend log verbosity",
      "secret": false,
      "strategy": "default",
      "default": "WARNING"
    },
    {
      "key": "BASEROW_EXTRA_ALLOWED_HOSTS",
      "service": "Baserow Backend",
      "description": "Django ALLOWED_HOSTS",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "BASEROW_AMOUNT_OF_GUNICORN_WORKERS",
      "service": "Baserow Backend",
      "description": "REST API worker count",
      "secret": false,
      "strategy": "default",
      "default": "2"
    },
    {
      "key": "BASEROW_TRIGGER_SYNC_TEMPLATES_AFTER_MIGRATION",
      "service": "Baserow Backend",
      "description": "Skip template sync on boot",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Internal Redis service hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Redis server listening port",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Redis default authentication user",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Internal Redis connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Redis password environment reference",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Password for Redis authentication",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "REDIS_PUBLIC_URL",
      "service": "Redis",
      "description": "Public Redis connection URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_URL",
      "service": "Celery Beat",
      "description": "Redis connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SECRET_KEY",
      "service": "Celery Beat",
      "description": "Must match backend SECRET_KEY",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_URL",
      "service": "Celery Beat",
      "description": "PostgreSQL connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "BASEROW_BACKEND_LOG_LEVEL",
      "service": "Celery Beat",
      "description": "Reduce beat log verbosity",
      "secret": false,
      "strategy": "default",
      "default": "WARNING"
    },
    {
      "key": "PUBLIC_BACKEND_URL",
      "service": "Baserow Frontend",
      "description": "Backend API URL for browser",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "PRIVATE_BACKEND_URL",
      "service": "Baserow Frontend",
      "description": "Internal backend for SSR",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PUBLIC_WEB_FRONTEND_URL",
      "service": "Baserow Frontend",
      "description": "Own public URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "BASEROW_DISABLE_PUBLIC_URL_CHECK",
      "service": "Baserow Frontend",
      "description": "Skip URL validation on startup",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "REDIS_URL",
      "service": "Celery Worker",
      "description": "Redis connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SECRET_KEY",
      "service": "Celery Worker",
      "description": "Must match backend SECRET_KEY",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_URL",
      "service": "Celery Worker",
      "description": "PostgreSQL connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "BASEROW_BACKEND_LOG_LEVEL",
      "service": "Celery Worker",
      "description": "Reduce worker log verbosity",
      "secret": false,
      "strategy": "default",
      "default": "WARNING"
    },
    {
      "key": "BASEROW_TRIGGER_SYNC_TEMPLATES_AFTER_MIGRATION",
      "service": "Celery Worker",
      "description": "Skip template sync",
      "secret": false,
      "strategy": "default",
      "default": "false"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "baserow-airtable-alternative"
      }
    },
    "cli": "railway deploy --template baserow-airtable-alternative",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "c42fc3d4-78b8-4fa7-82d9-d7f1b30bd636",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "149d80d4-1395-4cdf-9264-155a315698ee": {
                  "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": "Postgres data storage directory",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Internal Postgres host address",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Postgres server listening port",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "Default Postgres username",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "Default database name",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "Password for Postgres user",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Initial database created on startup",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Internal Postgres connection string",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Default database superuser name",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "Self-signed SSL certificate validity",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Postgres database user password",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_PUBLIC_URL": {
                      "isOptional": false,
                      "description": "Public Postgres connection string",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{PGDATABASE}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Graceful shutdown draining duration",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "149d80d4-1395-4cdf-9264-155a315698ee": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  },
                  "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."
                  }
                },
                "4d8fa315-94c4-4a02-a720-31fd2d174701": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/baserow.svg",
                  "name": "Baserow Backend",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "baserow/backend:2.2.0"
                  },
                  "variables": {
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Redis connection string",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Django signing key for sessions",
                      "defaultValue": "{{SECRET_KEY}}"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "PostgreSQL connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "PUBLIC_BACKEND_URL": {
                      "isOptional": false,
                      "description": "Public API URL for browser requests",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "BASEROW_BACKEND_DEBUG": {
                      "isOptional": false,
                      "description": "Disable Django debug mode",
                      "defaultValue": "false"
                    },
                    "PUBLIC_WEB_FRONTEND_URL": {
                      "isOptional": false,
                      "description": "Public frontend URL",
                      "defaultValue": "https://${{Baserow Frontend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "BASEROW_BACKEND_LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Reduce backend log verbosity",
                      "defaultValue": "WARNING"
                    },
                    "BASEROW_EXTRA_ALLOWED_HOSTS": {
                      "isOptional": false,
                      "description": "Django ALLOWED_HOSTS",
                      "defaultValue": "baserow-backend.railway.internal,${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "BASEROW_AMOUNT_OF_GUNICORN_WORKERS": {
                      "isOptional": false,
                      "description": "REST API worker count",
                      "defaultValue": "2"
                    },
                    "BASEROW_TRIGGER_SYNC_TEMPLATES_AFTER_MIGRATION": {
                      "isOptional": false,
                      "description": "Skip template sync on boot",
                      "defaultValue": "false"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>": {}
                    }
                  },
                  "volumeMounts": {
                    "4d8fa315-94c4-4a02-a720-31fd2d174701": {
                      "mountPath": "/baserow/media"
                    }
                  }
                },
                "7599e442-a77e-419f-963b-dc5219410383": {
                  "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": "Internal Redis service hostname",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Redis server listening port",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Redis default authentication user",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Internal Redis connection string",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Redis password environment reference",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Password for Redis authentication",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    },
                    "REDIS_PUBLIC_URL": {
                      "isOptional": false,
                      "description": "Public Redis connection URL",
                      "defaultValue": "redis://default:${{REDIS_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}"
                    }
                  },
                  "volumeMounts": {
                    "7599e442-a77e-419f-963b-dc5219410383": {
                      "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."
                  }
                },
                "90e5581f-5625-4347-b467-e18f5d23939a": {
                  "icon": "https://docs.celeryq.dev/en/main/_static/celery_512.png",
                  "name": "Celery Beat",
                  "deploy": {
                    "startCommand": "/baserow/backend/docker/docker-entrypoint.sh celery-beat",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "baserow/backend:2.2.0"
                  },
                  "variables": {
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Redis connection string",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Must match backend SECRET_KEY",
                      "defaultValue": "${{\"Baserow Backend\".SECRET_KEY}}"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "PostgreSQL connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "BASEROW_BACKEND_LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Reduce beat log verbosity",
                      "defaultValue": "WARNING"
                    }
                  }
                },
                "c55f5699-f837-4564-b320-671e6f0a8b35": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/baserow.svg",
                  "name": "Baserow Frontend",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "baserow/web-frontend:2.2.0"
                  },
                  "variables": {
                    "PUBLIC_BACKEND_URL": {
                      "isOptional": false,
                      "description": "Backend API URL for browser",
                      "defaultValue": "https://${{Baserow Backend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "PRIVATE_BACKEND_URL": {
                      "isOptional": false,
                      "description": "Internal backend for SSR",
                      "defaultValue": "http://${{Baserow Backend.RAILWAY_PRIVATE_DOMAIN}}:8000"
                    },
                    "PUBLIC_WEB_FRONTEND_URL": {
                      "isOptional": false,
                      "description": "Own public URL",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "BASEROW_DISABLE_PUBLIC_URL_CHECK": {
                      "isOptional": false,
                      "description": "Skip URL validation on startup",
                      "defaultValue": "true"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>": {}
                    }
                  }
                },
                "f6d45088-6848-4e05-8a92-a1cdd03672e1": {
                  "icon": "https://docs.celeryq.dev/en/main/_static/celery_512.png",
                  "name": "Celery Worker",
                  "deploy": {
                    "startCommand": "/baserow/backend/docker/docker-entrypoint.sh celery-worker",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "baserow/backend:2.2.0"
                  },
                  "variables": {
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Redis connection string",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Must match backend SECRET_KEY",
                      "defaultValue": "${{\"Baserow Backend\".SECRET_KEY}}"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "PostgreSQL connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "BASEROW_BACKEND_LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Reduce worker log verbosity",
                      "defaultValue": "WARNING"
                    },
                    "BASEROW_TRIGGER_SYNC_TEMPLATES_AFTER_MIGRATION": {
                      "isOptional": false,
                      "description": "Skip template sync",
                      "defaultValue": "false"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {},
  "resources": {
    "expected_services": 6,
    "needs_volume": true
  },
  "generated_at": "2026-09-22T22:14:50.114Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-20T14:25:09.928Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_5fd4c241a2df4983b72e",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 94,
    "typical_build_seconds": 0,
    "typical_start_seconds": 10,
    "slowest_service": "Celery Worker"
  }
}
