{
  "manifest_version": "1.0.0",
  "template": {
    "id": "11152f4a-96b2-48fa-bff2-f99614a835f8",
    "slug": "rss-hub",
    "name": "RSSHub",
    "description": "Creates RSS feeds for websites",
    "url": "https://railway.com/deploy/rss-hub",
    "upstream": {
      "image": "diygod/rsshub:latest"
    }
  },
  "services": [
    {
      "name": "rsshub",
      "source": {
        "image": "diygod/rsshub:latest"
      },
      "needs_volume": false,
      "http": true
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "rsshub",
      "description": "HTTP port the app listens on",
      "secret": false,
      "strategy": "default",
      "default": "1200"
    },
    {
      "key": "REDIS_URL",
      "service": "rsshub",
      "description": "Private Redis connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ACCESS_KEY",
      "service": "rsshub",
      "description": "Required on every route except the home page",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "CACHE_TYPE",
      "service": "rsshub",
      "description": "Use Redis instead of the in-process LRU",
      "secret": false,
      "strategy": "default",
      "default": "redis"
    },
    {
      "key": "DEBUG_INFO",
      "service": "rsshub",
      "description": "Hide request statistics on the home page",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "NO_LOGFILES",
      "service": "rsshub",
      "description": "Log to stdout only, no files on disk",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "CACHE_EXPIRE",
      "service": "rsshub",
      "description": "Route cache lifetime in seconds",
      "secret": false,
      "strategy": "default",
      "default": "600"
    },
    {
      "key": "DISABLE_NSFW",
      "service": "rsshub",
      "description": "Drop adult-site namespaces from the catalogue",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "DISALLOW_ROBOT",
      "service": "rsshub",
      "description": "Serve Disallow to search crawlers",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "CACHE_CONTENT_EXPIRE",
      "service": "rsshub",
      "description": "Article body cache lifetime in seconds",
      "secret": false,
      "strategy": "default",
      "default": "7200"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Private connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Auth password, read by the server",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "rss-hub"
      }
    },
    "cli": "railway deploy --template rss-hub",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "11152f4a-96b2-48fa-bff2-f99614a835f8",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "2ffa5c6d-10b9-49b5-bb70-111a5b5dcf3e": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/rsshub.png",
                  "name": "rsshub",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "diygod/rsshub:latest"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "HTTP port the app listens on",
                      "defaultValue": "1200"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private Redis connection string",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Required on every route except the home page",
                      "defaultValue": "{{ACCESS_KEY}}"
                    },
                    "CACHE_TYPE": {
                      "isOptional": false,
                      "description": "Use Redis instead of the in-process LRU",
                      "defaultValue": "redis"
                    },
                    "DEBUG_INFO": {
                      "isOptional": false,
                      "description": "Hide request statistics on the home page",
                      "defaultValue": "false"
                    },
                    "NO_LOGFILES": {
                      "isOptional": false,
                      "description": "Log to stdout only, no files on disk",
                      "defaultValue": "true"
                    },
                    "CACHE_EXPIRE": {
                      "isOptional": false,
                      "description": "Route cache lifetime in seconds",
                      "defaultValue": "600"
                    },
                    "DISABLE_NSFW": {
                      "isOptional": false,
                      "description": "Drop adult-site namespaces from the catalogue",
                      "defaultValue": "true"
                    },
                    "DISALLOW_ROBOT": {
                      "isOptional": false,
                      "description": "Serve Disallow to search crawlers",
                      "defaultValue": "true"
                    },
                    "CACHE_CONTENT_EXPIRE": {
                      "isOptional": false,
                      "description": "Article body cache lifetime in seconds",
                      "defaultValue": "7200"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:1200": {
                        "port": 1200
                      }
                    }
                  }
                },
                "c9d97112-bc34-4aad-82fa-99181a5bcd55": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/redis.svg",
                  "name": "Redis",
                  "deploy": {
                    "startCommand": "/bin/sh -c \"rm -rf $RAILWAY_VOLUME_MOUNT_PATH/lost+found/ && exec docker-entrypoint.sh redis-server --requirepass $REDIS_PASSWORD --save 60 1 --dir $RAILWAY_VOLUME_MOUNT_PATH\"",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "redis:8.2"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private connection string",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Auth password, read by the server",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "c9d97112-bc34-4aad-82fa-99181a5bcd55": {
                      "mountPath": "/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "rsshub",
      "method": "GET",
      "path": "/",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 2,
    "needs_volume": true
  },
  "generated_at": "2026-09-10T04:14:38.010Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-04T06:20:45.032Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_2fc63c15993440cc897f",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 132,
    "typical_build_seconds": 0,
    "typical_start_seconds": 10,
    "slowest_service": "rsshub"
  }
}
