{
  "manifest_version": "1.0.0",
  "template": {
    "id": "3bb2d2ad-c34d-4479-99ec-6c0fd96de47c",
    "slug": "apprise",
    "name": "Apprise",
    "description": "Send one HTTP request and it notifies Discord, Slack, Telegram and more",
    "url": "https://railway.com/deploy/apprise",
    "upstream": {
      "repo_url": "https://github.com/gridalpha/apprise-api-railway"
    }
  },
  "services": [
    {
      "name": "apprise",
      "source": {
        "repo": "https://github.com/gridalpha/apprise-api-railway"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "TZ",
      "service": "apprise",
      "description": "Timezone for log timestamps",
      "secret": false,
      "strategy": "default",
      "default": "Etc/UTC"
    },
    {
      "key": "PORT",
      "service": "apprise",
      "description": "Port Railway probes and routes to",
      "secret": false,
      "strategy": "default",
      "default": "8000"
    },
    {
      "key": "HTTP_PORT",
      "service": "apprise",
      "description": "Port nginx listens on",
      "secret": false,
      "strategy": "default",
      "default": "8000"
    },
    {
      "key": "SECRET_KEY",
      "service": "apprise",
      "description": "Django signing key",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "APPRISE_ADMIN",
      "service": "apprise",
      "description": "Enables the configuration listing page",
      "secret": false,
      "strategy": "default",
      "default": "yes"
    },
    {
      "key": "BASIC_AUTH_PASSWORD",
      "service": "apprise",
      "description": "Password for the basic auth gate",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "BASIC_AUTH_USERNAME",
      "service": "apprise",
      "description": "Username for the basic auth gate",
      "secret": false,
      "strategy": "default",
      "default": "apprise"
    },
    {
      "key": "APPRISE_WORKER_COUNT",
      "service": "apprise",
      "description": "gunicorn workers sending notifications",
      "secret": false,
      "strategy": "default",
      "default": "4"
    },
    {
      "key": "APPRISE_STATEFUL_MODE",
      "service": "apprise",
      "description": "Stores configurations under their key",
      "secret": false,
      "strategy": "default",
      "default": "simple"
    },
    {
      "key": "NGINX_WORKER_PROCESSES",
      "service": "apprise",
      "description": "nginx worker processes",
      "secret": false,
      "strategy": "default",
      "default": "2"
    },
    {
      "key": "APPRISE_ATTACH_REJECT_URL",
      "service": "apprise",
      "description": "Blocks private-address attachment fetches",
      "secret": false,
      "strategy": "default",
      "default": "internal 127.0.* localhost*"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "apprise",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "30"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "apprise"
      }
    },
    "cli": "railway deploy --template apprise",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "3bb2d2ad-c34d-4479-99ec-6c0fd96de47c",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "278949d5-10b7-480f-9e73-22d51ef51ccd": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/apprise.png",
                  "name": "apprise",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/status",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/apprise-api-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "TZ": {
                      "isOptional": true,
                      "description": "Timezone for log timestamps",
                      "defaultValue": "Etc/UTC"
                    },
                    "PORT": {
                      "isOptional": false,
                      "description": "Port Railway probes and routes to",
                      "defaultValue": "8000"
                    },
                    "HTTP_PORT": {
                      "isOptional": false,
                      "description": "Port nginx listens on",
                      "defaultValue": "8000"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Django signing key",
                      "defaultValue": "{{SECRET_KEY}}"
                    },
                    "APPRISE_ADMIN": {
                      "isOptional": true,
                      "description": "Enables the configuration listing page",
                      "defaultValue": "yes"
                    },
                    "BASIC_AUTH_PASSWORD": {
                      "isOptional": false,
                      "description": "Password for the basic auth gate",
                      "defaultValue": "{{BASIC_AUTH_PASSWORD}}"
                    },
                    "BASIC_AUTH_USERNAME": {
                      "isOptional": true,
                      "description": "Username for the basic auth gate",
                      "defaultValue": "apprise"
                    },
                    "APPRISE_WORKER_COUNT": {
                      "isOptional": true,
                      "description": "gunicorn workers sending notifications",
                      "defaultValue": "4"
                    },
                    "APPRISE_STATEFUL_MODE": {
                      "isOptional": true,
                      "description": "Stores configurations under their key",
                      "defaultValue": "simple"
                    },
                    "NGINX_WORKER_PROCESSES": {
                      "isOptional": true,
                      "description": "nginx worker processes",
                      "defaultValue": "2"
                    },
                    "APPRISE_ATTACH_REJECT_URL": {
                      "isOptional": true,
                      "description": "Blocks private-address attachment fetches",
                      "defaultValue": "internal 127.0.* localhost*"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": true,
                      "description": "Clean shutdown window",
                      "defaultValue": "30"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8000": {
                        "port": 8000
                      }
                    }
                  },
                  "volumeMounts": {
                    "278949d5-10b7-480f-9e73-22d51ef51ccd": {
                      "mountPath": "/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "apprise",
      "method": "GET",
      "path": "/status",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 1,
    "needs_volume": true
  },
  "generated_at": "2026-09-04T05:44:27.711Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-04T05:35:41.701Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_880969f7e1a54b7aa6ee",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 82,
    "typical_build_seconds": 20,
    "typical_deploy_seconds": 10,
    "typical_healthcheck_lag_seconds": 0,
    "slowest_service": "apprise"
  }
}
