{
  "manifest_version": "1.0.0",
  "template": {
    "id": "b766e80c-c5f1-4b83-9481-eda5a35152af",
    "slug": "firecrawl-or-just-updated-web-scraper-ap",
    "name": "Firecrawl | (Just Updated) Web Scraper API for LLMs, Not Open to the Internet",
    "description": "API-key-gated web scraper API for LLMs. Queue, cache and renderer wired.",
    "url": "https://railway.com/deploy/firecrawl-or-just-updated-web-scraper-ap",
    "upstream": {
      "image": "ghcr.io/bon5co/firecrawl-railway:2.11.209"
    }
  },
  "services": [
    {
      "name": "firecrawl",
      "source": {
        "image": "ghcr.io/bon5co/firecrawl-railway:2.11.209"
      },
      "needs_volume": false,
      "http": true
    },
    {
      "name": "playwright",
      "source": {
        "image": "ghcr.io/bon5co/firecrawl-railway-playwright:2026.08.22"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "nuq-postgres",
      "source": {
        "image": "ghcr.io/firecrawl/nuq-postgres@sha256:aed86f62858f29bd971abddcdeb301c12888098d2cf5d33c1ba42b053bc460f6"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql",
      "http": false
    },
    {
      "name": "rabbitmq",
      "source": {
        "image": "ghcr.io/bon5co/firecrawl-railway-rabbitmq:4.1.4"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/rabbitmq",
      "http": false
    },
    {
      "name": "redis",
      "source": {
        "image": "redis:8.2.1-alpine"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "REDIS_URL",
      "service": "firecrawl",
      "description": "Provide a value for REDIS_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "NUQ_DATABASE_URL",
      "service": "firecrawl",
      "description": "Provide a value for NUQ_DATABASE_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "NUQ_RABBITMQ_URL",
      "service": "firecrawl",
      "description": "Provide a value for NUQ_RABBITMQ_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "FIRECRAWL_API_KEY",
      "service": "firecrawl",
      "description": "Provide a value for FIRECRAWL_API_KEY.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "REDIS_RATE_LIMIT_URL",
      "service": "firecrawl",
      "description": "Provide a value for REDIS_RATE_LIMIT_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PLAYWRIGHT_MICROSERVICE_URL",
      "service": "firecrawl",
      "description": "Provide a value for PLAYWRIGHT_MICROSERVICE_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "nuq-postgres",
      "description": "Provide a value for POSTGRES_PASSWORD.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "RABBITMQ_DEFAULT_PASS",
      "service": "rabbitmq",
      "description": "Provide a value for RABBITMQ_DEFAULT_PASS.",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "redis",
      "description": "Provide a value for REDIS_PASSWORD.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "firecrawl-or-just-updated-web-scraper-ap"
      }
    },
    "cli": "railway deploy --template firecrawl-or-just-updated-web-scraper-ap",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "b766e80c-c5f1-4b83-9481-eda5a35152af",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "3855a0fc-8de3-43ef-a738-45ff0a79bddf": {
                  "icon": null,
                  "name": "firecrawl",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/bon5co/firecrawl-railway:2.11.209"
                  },
                  "variables": {
                    "REDIS_URL": {
                      "isOptional": false,
                      "defaultValue": "redis://default:${{redis.REDIS_PASSWORD}}@${{redis.RAILWAY_PRIVATE_DOMAIN}}:6379"
                    },
                    "NUQ_DATABASE_URL": {
                      "isOptional": false,
                      "defaultValue": "postgresql://postgres:${{nuq-postgres.POSTGRES_PASSWORD}}@${{nuq-postgres.RAILWAY_PRIVATE_DOMAIN}}:5432/postgres"
                    },
                    "NUQ_RABBITMQ_URL": {
                      "isOptional": false,
                      "defaultValue": "amqp://firecrawl:${{rabbitmq.RABBITMQ_DEFAULT_PASS}}@${{rabbitmq.RAILWAY_PRIVATE_DOMAIN}}:5672"
                    },
                    "FIRECRAWL_API_KEY": {
                      "isOptional": false,
                      "defaultValue": "{{FIRECRAWL_API_KEY}}"
                    },
                    "REDIS_RATE_LIMIT_URL": {
                      "isOptional": false,
                      "defaultValue": "redis://default:${{redis.REDIS_PASSWORD}}@${{redis.RAILWAY_PRIVATE_DOMAIN}}:6379"
                    },
                    "PLAYWRIGHT_MICROSERVICE_URL": {
                      "isOptional": false,
                      "defaultValue": "http://${{playwright.RAILWAY_PRIVATE_DOMAIN}}:3000/scrape"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8080": {
                        "port": 8080
                      }
                    }
                  }
                },
                "64943ecd-acc8-49b0-95af-18ae82777241": {
                  "icon": null,
                  "name": "playwright",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/bon5co/firecrawl-railway-playwright:2026.08.22"
                  },
                  "variables": {}
                },
                "75a44b7e-98d8-46db-ae71-e27036780454": {
                  "icon": null,
                  "name": "nuq-postgres",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/firecrawl/nuq-postgres@sha256:aed86f62858f29bd971abddcdeb301c12888098d2cf5d33c1ba42b053bc460f6"
                  },
                  "variables": {
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "75a44b7e-98d8-46db-ae71-e27036780454": {
                      "mountPath": "/var/lib/postgresql"
                    }
                  }
                },
                "b472a8d5-03f1-4239-91df-08ef1bcc86c3": {
                  "icon": null,
                  "name": "rabbitmq",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/bon5co/firecrawl-railway-rabbitmq:4.1.4"
                  },
                  "variables": {
                    "RABBITMQ_DEFAULT_PASS": {
                      "isOptional": false,
                      "defaultValue": "{{RABBITMQ_DEFAULT_PASS}}"
                    }
                  },
                  "volumeMounts": {
                    "b472a8d5-03f1-4239-91df-08ef1bcc86c3": {
                      "mountPath": "/var/lib/rabbitmq"
                    }
                  }
                },
                "f84c6a09-eca9-47c2-8d8c-7bc0091c0572": {
                  "icon": null,
                  "name": "redis",
                  "deploy": {
                    "startCommand": "/bin/sh -c 'chown -R redis:redis /data && exec docker-entrypoint.sh redis-server --requirepass \"$REDIS_PASSWORD\" --appendonly yes --dir /data'",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "redis:8.2.1-alpine"
                  },
                  "variables": {
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "f84c6a09-eca9-47c2-8d8c-7bc0091c0572": {
                      "mountPath": "/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "firecrawl",
      "method": "GET",
      "path": "/",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 5,
    "needs_volume": true
  },
  "generated_at": "2026-09-11T10:14:37.526Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-10T15:11:31.941Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_3574f6d2e947470b9d1f",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 77,
    "typical_build_seconds": 0,
    "typical_start_seconds": 21,
    "slowest_service": "firecrawl"
  }
}
