{
  "manifest_version": "1.0.0",
  "template": {
    "id": "6af53aef-ca3f-4026-9544-af7ece6e8ca1",
    "slug": "skyvern-ai",
    "name": "Skyvern",
    "description": "Self-hosted Skyvern: LLM browser automation, workflows, credential vault",
    "url": "https://railway.com/deploy/skyvern-ai",
    "upstream": {
      "repo_url": "https://github.com/gridalpha/skyvern-railway"
    }
  },
  "services": [
    {
      "name": "skyvern",
      "source": {
        "repo": "https://github.com/gridalpha/skyvern-railway"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "skyvern-ui",
      "source": {
        "repo": "https://github.com/gridalpha/skyvern-railway"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "gateway",
      "source": {
        "repo": "https://github.com/gridalpha/skyvern-railway"
      },
      "needs_volume": false,
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "ENV",
      "service": "skyvern",
      "description": "Disables development-only routes",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "PORT",
      "service": "skyvern",
      "description": "API listening port",
      "secret": false,
      "strategy": "default",
      "default": "8000"
    },
    {
      "key": "HAR_PATH",
      "service": "skyvern",
      "description": "Captured network traces",
      "secret": false,
      "strategy": "default",
      "default": "/data/har"
    },
    {
      "key": "LOG_PATH",
      "service": "skyvern",
      "description": "Browser console logs",
      "secret": false,
      "strategy": "default",
      "default": "/data/log"
    },
    {
      "key": "SECRET_KEY",
      "service": "skyvern",
      "description": "Signs the organization API token",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "VIDEO_PATH",
      "service": "skyvern",
      "description": "Session recordings",
      "secret": false,
      "strategy": "default",
      "default": "/data/videos"
    },
    {
      "key": "BROWSER_TYPE",
      "service": "skyvern",
      "description": "Browser launched for each run",
      "secret": false,
      "strategy": "default",
      "default": "chromium-headful"
    },
    {
      "key": "DATABASE_URL",
      "service": "skyvern",
      "description": "Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ARTIFACT_PORT",
      "service": "skyvern",
      "description": "Artifact reader listening port",
      "secret": false,
      "strategy": "default",
      "default": "9090"
    },
    {
      "key": "DOWNLOAD_PATH",
      "service": "skyvern",
      "description": "Files downloaded during runs",
      "secret": false,
      "strategy": "default",
      "default": "/data/downloads"
    },
    {
      "key": "OPENAI_API_KEY",
      "service": "skyvern",
      "description": "Set this to run tasks with OpenAI. Have kept this non optional to bring attention to these 5 env vars. Whichever you want to use keep it, and remove the rest",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "CODE_BLOCK_MODE",
      "service": "skyvern",
      "description": "Enables custom code blocks",
      "secret": false,
      "strategy": "default",
      "default": "enabled"
    },
    {
      "key": "SKYVERN_APP_URL",
      "service": "skyvern",
      "description": "Public-facing app URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "ENABLE_ENCRYPTION",
      "service": "skyvern",
      "description": "Encrypts stored workflow secrets",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "ENCRYPTOR_AES_SALT",
      "service": "skyvern",
      "description": "Credential vault key salt",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "SKYVERN_STORAGE_TYPE",
      "service": "skyvern",
      "description": "Artifacts stored on the volume",
      "secret": false,
      "strategy": "default",
      "default": "local"
    },
    {
      "key": "ARTIFACT_STORAGE_PATH",
      "service": "skyvern",
      "description": "Screenshots and step artifacts",
      "secret": false,
      "strategy": "default",
      "default": "/data/artifacts"
    },
    {
      "key": "CREDENTIAL_VAULT_TYPE",
      "service": "skyvern",
      "description": "Built-in credential vault",
      "secret": false,
      "strategy": "default",
      "default": "skyvern"
    },
    {
      "key": "BROWSER_STREAMING_MODE",
      "service": "skyvern",
      "description": "Live view over Chrome DevTools",
      "secret": false,
      "strategy": "default",
      "default": "cdp"
    },
    {
      "key": "RAILWAY_DOCKERFILE_PATH",
      "service": "skyvern",
      "description": "Dockerfile for this service",
      "secret": false,
      "strategy": "default",
      "default": "backend/Dockerfile"
    },
    {
      "key": "SKYVERN_ORGANIZATION_ID",
      "service": "skyvern",
      "description": "Fixed organization identifier",
      "secret": false,
      "strategy": "default",
      "default": "o_railway"
    },
    {
      "key": "ENCRYPTOR_AES_SECRET_KEY",
      "service": "skyvern",
      "description": "Credential vault encryption key",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "BROWSER_SESSION_BASE_PATH",
      "service": "skyvern",
      "description": "Persistent browser profiles",
      "secret": false,
      "strategy": "default",
      "default": "/data/browser_sessions"
    },
    {
      "key": "SKYVERN_ORGANIZATION_NAME",
      "service": "skyvern",
      "description": "Organization display name",
      "secret": false,
      "strategy": "default",
      "default": "Skyvern"
    },
    {
      "key": "LOCAL_CREDENTIAL_VAULT_PATH",
      "service": "skyvern",
      "description": "Credential vault location",
      "secret": false,
      "strategy": "default",
      "default": "/data/credential_vault"
    },
    {
      "key": "ENABLE_LOCAL_CREDENTIAL_VAULT",
      "service": "skyvern",
      "description": "Store credentials on the volume",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "skyvern",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "30"
    },
    {
      "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": "skyvern-ui",
      "description": "UI listening port",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "VITE_ENVIRONMENT",
      "service": "skyvern-ui",
      "description": "Frontend environment label",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "VITE_API_BASE_URL",
      "service": "skyvern-ui",
      "description": "Browser-facing API URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "VITE_WSS_BASE_URL",
      "service": "skyvern-ui",
      "description": "Browser-facing WebSocket URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "SKYVERN_SECRET_KEY",
      "service": "skyvern-ui",
      "description": "Derives the organization API key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SKYVERN_API_BASE_URL",
      "service": "skyvern-ui",
      "description": "Private API address",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "VITE_ENABLE_CODE_BLOCK",
      "service": "skyvern-ui",
      "description": "Shows code blocks in the builder",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILWAY_DOCKERFILE_PATH",
      "service": "skyvern-ui",
      "description": "Dockerfile for this service",
      "secret": false,
      "strategy": "default",
      "default": "ui/Dockerfile"
    },
    {
      "key": "SKYVERN_ORGANIZATION_ID",
      "service": "skyvern-ui",
      "description": "Organization identifier",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VITE_ENABLE_LOG_ARTIFACTS",
      "service": "skyvern-ui",
      "description": "Shows run logs in the UI",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "VITE_ARTIFACT_API_BASE_URL",
      "service": "skyvern-ui",
      "description": "Browser-facing artifact URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "VITE_BROWSER_STREAMING_MODE",
      "service": "skyvern-ui",
      "description": "Live view over Chrome DevTools",
      "secret": false,
      "strategy": "default",
      "default": "cdp"
    },
    {
      "key": "PORT",
      "service": "gateway",
      "description": "Caddy listening port",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "GATEWAY_PASSWORD",
      "service": "gateway",
      "description": "Basic-auth password for the public URL",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "GATEWAY_USERNAME",
      "service": "gateway",
      "description": "Basic-auth username for the public URL",
      "secret": false,
      "strategy": "default",
      "default": "admin"
    },
    {
      "key": "SKYVERN_UI_UPSTREAM",
      "service": "gateway",
      "description": "Private UI address",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "SKYVERN_API_UPSTREAM",
      "service": "gateway",
      "description": "Private API address",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "RAILWAY_DOCKERFILE_PATH",
      "service": "gateway",
      "description": "Dockerfile for this service",
      "secret": false,
      "strategy": "default",
      "default": "gateway/Dockerfile"
    },
    {
      "key": "SKYVERN_ARTIFACT_UPSTREAM",
      "service": "gateway",
      "description": "Private artifact address",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "skyvern-ai"
      }
    },
    "cli": "railway deploy --template skyvern-ai",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "6af53aef-ca3f-4026-9544-af7ece6e8ca1",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "10f4bbaa-2aa1-43e2-aa78-7fa279390ab4": {
                  "icon": "https://raw.githubusercontent.com/Skyvern-AI/skyvern/main/skyvern-frontend/public/logo-small.png",
                  "name": "skyvern",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/api/v1/heartbeat",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/skyvern-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "ENV": {
                      "isOptional": false,
                      "description": "Disables development-only routes",
                      "defaultValue": "production"
                    },
                    "PORT": {
                      "isOptional": false,
                      "description": "API listening port",
                      "defaultValue": "8000"
                    },
                    "HAR_PATH": {
                      "isOptional": false,
                      "description": "Captured network traces",
                      "defaultValue": "/data/har"
                    },
                    "LOG_PATH": {
                      "isOptional": false,
                      "description": "Browser console logs",
                      "defaultValue": "/data/log"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Signs the organization API token",
                      "defaultValue": "{{SECRET_KEY}}"
                    },
                    "VIDEO_PATH": {
                      "isOptional": false,
                      "description": "Session recordings",
                      "defaultValue": "/data/videos"
                    },
                    "BROWSER_TYPE": {
                      "isOptional": false,
                      "description": "Browser launched for each run",
                      "defaultValue": "chromium-headful"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Postgres connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "GROQ_API_KEY": {
                      "isOptional": true,
                      "description": "Set this instead to use Groq",
                      "defaultValue": ""
                    },
                    "ARTIFACT_PORT": {
                      "isOptional": false,
                      "description": "Artifact reader listening port",
                      "defaultValue": "9090"
                    },
                    "DOWNLOAD_PATH": {
                      "isOptional": false,
                      "description": "Files downloaded during runs",
                      "defaultValue": "/data/downloads"
                    },
                    "GEMINI_API_KEY": {
                      "isOptional": true,
                      "description": "Set this instead to use Gemini",
                      "defaultValue": ""
                    },
                    "OPENAI_API_KEY": {
                      "isOptional": false,
                      "description": "Set this to run tasks with OpenAI. Have kept this non optional to bring attention to these 5 env vars. Whichever you want to use keep it, and remove the rest",
                      "defaultValue": "{{OPENAI_API_KEY}}"
                    },
                    "CODE_BLOCK_MODE": {
                      "isOptional": false,
                      "description": "Enables custom code blocks",
                      "defaultValue": "enabled"
                    },
                    "SKYVERN_APP_URL": {
                      "isOptional": false,
                      "description": "Public-facing app URL",
                      "defaultValue": "https://${{gateway.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "ANTHROPIC_API_KEY": {
                      "isOptional": true,
                      "description": "Set this instead to use Anthropic",
                      "defaultValue": ""
                    },
                    "ENABLE_ENCRYPTION": {
                      "isOptional": false,
                      "description": "Encrypts stored workflow secrets",
                      "defaultValue": "true"
                    },
                    "ENCRYPTOR_AES_SALT": {
                      "isOptional": false,
                      "description": "Credential vault key salt",
                      "defaultValue": "{{ENCRYPTOR_AES_SALT}}"
                    },
                    "OPENROUTER_API_KEY": {
                      "isOptional": true,
                      "description": "Set this instead to use OpenRouter",
                      "defaultValue": ""
                    },
                    "SKYVERN_STORAGE_TYPE": {
                      "isOptional": false,
                      "description": "Artifacts stored on the volume",
                      "defaultValue": "local"
                    },
                    "ARTIFACT_STORAGE_PATH": {
                      "isOptional": false,
                      "description": "Screenshots and step artifacts",
                      "defaultValue": "/data/artifacts"
                    },
                    "CREDENTIAL_VAULT_TYPE": {
                      "isOptional": false,
                      "description": "Built-in credential vault",
                      "defaultValue": "skyvern"
                    },
                    "BROWSER_STREAMING_MODE": {
                      "isOptional": false,
                      "description": "Live view over Chrome DevTools",
                      "defaultValue": "cdp"
                    },
                    "RAILWAY_DOCKERFILE_PATH": {
                      "isOptional": false,
                      "description": "Dockerfile for this service",
                      "defaultValue": "backend/Dockerfile"
                    },
                    "SKYVERN_ORGANIZATION_ID": {
                      "isOptional": false,
                      "description": "Fixed organization identifier",
                      "defaultValue": "o_railway"
                    },
                    "ENCRYPTOR_AES_SECRET_KEY": {
                      "isOptional": false,
                      "description": "Credential vault encryption key",
                      "defaultValue": "{{ENCRYPTOR_AES_SECRET_KEY}}"
                    },
                    "BROWSER_SESSION_BASE_PATH": {
                      "isOptional": false,
                      "description": "Persistent browser profiles",
                      "defaultValue": "/data/browser_sessions"
                    },
                    "SKYVERN_ORGANIZATION_NAME": {
                      "isOptional": false,
                      "description": "Organization display name",
                      "defaultValue": "Skyvern"
                    },
                    "LOCAL_CREDENTIAL_VAULT_PATH": {
                      "isOptional": false,
                      "description": "Credential vault location",
                      "defaultValue": "/data/credential_vault"
                    },
                    "ENABLE_LOCAL_CREDENTIAL_VAULT": {
                      "isOptional": false,
                      "description": "Store credentials on the volume",
                      "defaultValue": "true"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "30"
                    }
                  },
                  "volumeMounts": {
                    "10f4bbaa-2aa1-43e2-aa78-7fa279390ab4": {
                      "mountPath": "/data"
                    }
                  }
                },
                "a5f39389-60d7-4016-a1c9-8937851e0331": {
                  "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": {
                    "a5f39389-60d7-4016-a1c9-8937851e0331": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "c7905c81-e342-41ca-8137-fc55e1e06d73": {
                  "icon": "https://raw.githubusercontent.com/Skyvern-AI/skyvern/main/skyvern-frontend/public/logo-small.png",
                  "name": "skyvern-ui",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/skyvern-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "UI listening port",
                      "defaultValue": "8080"
                    },
                    "VITE_ENVIRONMENT": {
                      "isOptional": false,
                      "description": "Frontend environment label",
                      "defaultValue": "production"
                    },
                    "VITE_API_BASE_URL": {
                      "isOptional": false,
                      "description": "Browser-facing API URL",
                      "defaultValue": "https://${{gateway.RAILWAY_PUBLIC_DOMAIN}}/api/v1"
                    },
                    "VITE_WSS_BASE_URL": {
                      "isOptional": false,
                      "description": "Browser-facing WebSocket URL",
                      "defaultValue": "wss://${{gateway.RAILWAY_PUBLIC_DOMAIN}}/api/v1"
                    },
                    "SKYVERN_SECRET_KEY": {
                      "isOptional": false,
                      "description": "Derives the organization API key",
                      "defaultValue": "${{skyvern.SECRET_KEY}}"
                    },
                    "SKYVERN_API_BASE_URL": {
                      "isOptional": false,
                      "description": "Private API address",
                      "defaultValue": "http://${{skyvern.RAILWAY_PRIVATE_DOMAIN}}:8000/api/v1"
                    },
                    "VITE_ENABLE_CODE_BLOCK": {
                      "isOptional": false,
                      "description": "Shows code blocks in the builder",
                      "defaultValue": "true"
                    },
                    "RAILWAY_DOCKERFILE_PATH": {
                      "isOptional": false,
                      "description": "Dockerfile for this service",
                      "defaultValue": "ui/Dockerfile"
                    },
                    "SKYVERN_ORGANIZATION_ID": {
                      "isOptional": false,
                      "description": "Organization identifier",
                      "defaultValue": "${{skyvern.SKYVERN_ORGANIZATION_ID}}"
                    },
                    "VITE_ENABLE_LOG_ARTIFACTS": {
                      "isOptional": false,
                      "description": "Shows run logs in the UI",
                      "defaultValue": "true"
                    },
                    "VITE_ARTIFACT_API_BASE_URL": {
                      "isOptional": false,
                      "description": "Browser-facing artifact URL",
                      "defaultValue": "https://${{gateway.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "VITE_BROWSER_STREAMING_MODE": {
                      "isOptional": false,
                      "description": "Live view over Chrome DevTools",
                      "defaultValue": "cdp"
                    }
                  }
                },
                "e40a82f5-58ee-4e5b-bb5d-c1c4279bb074": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/caddy.svg",
                  "name": "gateway",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/healthz",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/skyvern-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Caddy listening port",
                      "defaultValue": "8080"
                    },
                    "GATEWAY_PASSWORD": {
                      "isOptional": false,
                      "description": "Basic-auth password for the public URL",
                      "defaultValue": "{{GATEWAY_PASSWORD}}"
                    },
                    "GATEWAY_USERNAME": {
                      "isOptional": false,
                      "description": "Basic-auth username for the public URL",
                      "defaultValue": "admin"
                    },
                    "SKYVERN_UI_UPSTREAM": {
                      "isOptional": false,
                      "description": "Private UI address",
                      "defaultValue": "${{skyvern-ui.RAILWAY_PRIVATE_DOMAIN}}:8080"
                    },
                    "SKYVERN_API_UPSTREAM": {
                      "isOptional": false,
                      "description": "Private API address",
                      "defaultValue": "${{skyvern.RAILWAY_PRIVATE_DOMAIN}}:8000"
                    },
                    "RAILWAY_DOCKERFILE_PATH": {
                      "isOptional": false,
                      "description": "Dockerfile for this service",
                      "defaultValue": "gateway/Dockerfile"
                    },
                    "SKYVERN_ARTIFACT_UPSTREAM": {
                      "isOptional": false,
                      "description": "Private artifact address",
                      "defaultValue": "${{skyvern.RAILWAY_PRIVATE_DOMAIN}}:9090"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8080": {
                        "port": 8080
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "gateway",
      "method": "GET",
      "path": "/healthz",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 4,
    "needs_volume": true
  },
  "generated_at": "2026-09-22T04:14:41.730Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-21T20:30:47.806Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_e12f419f78954c0cae98",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 215,
    "typical_build_seconds": 92,
    "typical_start_seconds": 51,
    "slowest_service": "skyvern"
  }
}
