{
  "manifest_version": "1.0.0",
  "template": {
    "id": "b80a5ac5-c256-4493-9306-79a23d9b287b",
    "slug": "plane-or-linear-and-jira-alternative",
    "name": "Plane | Linear & Jira Alternative [Updated Sep '26]",
    "description": "Plane [Sep '26] (Linear & Jira Alternative) Project Management Self Host",
    "url": "https://railway.com/deploy/plane-or-linear-and-jira-alternative",
    "upstream": {
      "image": "makeplane/plane-aio-community:v1.4.2"
    }
  },
  "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": "plane",
      "source": {
        "image": "makeplane/plane-aio-community:v1.4.2"
      },
      "needs_volume": false,
      "http": true
    },
    {
      "name": "minio",
      "source": {
        "image": "minio/minio:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "rabbitmq",
      "source": {
        "image": "rabbitmq:3.13.6-management-alpine"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "redis",
      "source": {
        "image": "redis:8.2.1"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PGDATA",
      "service": "postgres",
      "description": "Data directory inside the mounted volume.",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "POSTGRES_DB",
      "service": "postgres",
      "description": "Database name — must match the path segment in plane's DATABASE_URL.",
      "secret": false,
      "strategy": "default",
      "default": "plane"
    },
    {
      "key": "POSTGRES_USER",
      "service": "postgres",
      "description": "Must match the username used in plane's DATABASE_URL.",
      "secret": false,
      "strategy": "default",
      "default": "plane"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "postgres",
      "description": "Auto-generated Postgres password — referenced by plane's DATABASE_URL.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "WEB_URL",
      "service": "plane",
      "description": "Belt-and-suspenders alongside APP_BASE_URL — start.sh sets this internally from DOMAIN_NAME+APP_PROTOCOL already, but setting it explicitly avoids relying on that derivation being correct.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "AMQP_URL",
      "service": "plane",
      "description": "RabbitMQ connection string for background task processing (notifications, imports, exports). Vhost must be plane, matching RABBITMQ_DEFAULT_VHOST on the rabbitmq service.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDIS_URL",
      "service": "plane",
      "description": "Redis connection string used for caching and session storage. Password must match redis's REDIS_PASSWORD.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "AWS_REGION",
      "service": "plane",
      "description": "Required by the S3 client even though MinIO ignores real AWS regions — any valid-looking region string works.",
      "secret": false,
      "strategy": "default",
      "default": "us-east-1"
    },
    {
      "key": "SECRET_KEY",
      "service": "plane",
      "description": "Django cryptographic secret for sessions and tokens. Auto-generated per deployment if left as the shipped placeholder, but setting an explicit long random value here at publish time is safer than relying on first-boot autogeneration.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "DOMAIN_NAME",
      "service": "plane",
      "description": "Bare hostname only, no https:// prefix. Confirmed live — a protocol prefix here breaks the container's own domain validation regex and the app refuses to boot.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "APP_BASE_URL",
      "service": "plane",
      "description": "Main web app base URL. Same reasoning as ADMIN_BASE_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "APP_PROTOCOL",
      "service": "plane",
      "description": "Railway domains are always HTTPS; this must be https, not the container's internal default of http, or generated links/CORS will be wrong.",
      "secret": false,
      "strategy": "default",
      "default": "https"
    },
    {
      "key": "DATABASE_URL",
      "service": "plane",
      "description": "Full Postgres connection string. Must reference the postgres service's own generated password — never hardcode.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "ADMIN_BASE_URL",
      "service": "plane",
      "description": "Required or the god-mode (instance admin setup) page hangs on an infinite loading spinner — confirmed live, this is not documented in the AIO README's env var list at all. Must include the https:// prefix (unlike DOMAIN_NAME). Same value as APP_BASE_URL/SPACE_BASE_URL for this single-domain all-in-one deploy.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "SPACE_BASE_URL",
      "service": "plane",
      "description": "Public-project space frontend base URL. Same reasoning as ADMIN_BASE_URL — left unset, this and the other two base URLs come back null from /api/instances/ and break frontend routing.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "FILE_SIZE_LIMIT",
      "service": "plane",
      "description": "Maximum file upload size in bytes (10MB). Image default is 5MB (5242880); doubled here for typical issue attachments.",
      "secret": false,
      "strategy": "default",
      "default": "10485760"
    },
    {
      "key": "AWS_ACCESS_KEY_ID",
      "service": "plane",
      "description": "Must match minio's MINIO_ROOT_USER — this is the object storage access key, not a real AWS credential.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AWS_S3_BUCKET_NAME",
      "service": "plane",
      "description": "Bucket name for file/attachment uploads. Plane's backend creates this bucket on first use if it doesn't exist — confirmed live, no manual mc mb step needed.",
      "secret": false,
      "strategy": "default",
      "default": "uploads"
    },
    {
      "key": "AWS_S3_ENDPOINT_URL",
      "service": "plane",
      "description": "Critical — without this, the app defaults to real s3.amazonaws.com and every upload silently fails auth against MinIO credentials.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "AWS_SECRET_ACCESS_KEY",
      "service": "plane",
      "description": "Must match minio's MINIO_ROOT_PASSWORD.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "LIVE_SERVER_SECRET_KEY",
      "service": "plane",
      "description": "Shared secret between the API and the real-time collaboration server. Same autogeneration caveat as SECRET_KEY.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "MINIO_ROOT_USER",
      "service": "minio",
      "description": "Object storage access key — referenced by plane's AWS_ACCESS_KEY_ID.",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "MINIO_ROOT_PASSWORD",
      "service": "minio",
      "description": "Object storage secret key — referenced by plane's AWS_SECRET_ACCESS_KEY.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "RABBITMQ_DEFAULT_PASS",
      "service": "rabbitmq",
      "description": "Referenced by plane's AMQP_URL.",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "RABBITMQ_DEFAULT_USER",
      "service": "rabbitmq",
      "description": "Must match the username in plane's AMQP_URL.",
      "secret": false,
      "strategy": "default",
      "default": "plane"
    },
    {
      "key": "RABBITMQ_DEFAULT_VHOST",
      "service": "rabbitmq",
      "description": "Must match the vhost path segment in plane's AMQP_URL.",
      "secret": false,
      "strategy": "default",
      "default": "plane"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "redis",
      "description": "Used by the custom start command's --requirepass flag and referenced in plane's REDIS_URL.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "plane-or-linear-and-jira-alternative"
      }
    },
    "cli": "railway deploy --template plane-or-linear-and-jira-alternative",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "b80a5ac5-c256-4493-9306-79a23d9b287b",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "273fcbe3-0a44-4fd0-81b3-f1a92bc34c1e": {
                  "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": "Data directory inside the mounted volume.",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Database name — must match the path segment in plane's DATABASE_URL.",
                      "defaultValue": "plane"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Must match the username used in plane's DATABASE_URL.",
                      "defaultValue": "plane"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Auto-generated Postgres password — referenced by plane's DATABASE_URL.",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "273fcbe3-0a44-4fd0-81b3-f1a92bc34c1e": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "33a9700f-9439-4445-b160-c5e66e78ab4e": {
                  "icon": "https://res.cloudinary.com/rroe4rtk/image/upload/v1786131752/2fbeff38-897e-4595-90a0-a10aaff40c76.png",
                  "name": "plane",
                  "deploy": {
                    "startCommand": "sh -c \"echo cCA9ICcvYXBwL3Byb3h5L0NhZGR5ZmlsZScKcyA9IG9wZW4ocCkucmVhZCgpCm1hcmtlciA9ICdoYW5kbGVfcGF0aCAvZ29kLW1vZGUqIHsnCmlmIG1hcmtlciBpbiBzIGFuZCAnaGFuZGxlIC9nb2QtbW9kZSB7JyBub3QgaW4gczoKICAgIGluc2VydCA9ICdoYW5kbGUgL2dvZC1tb2RlIHtcbiAgICAgICAgcmVkaXIgKiAvZ29kLW1vZGUvIDMwMVxuICAgIH1cblxuICAgICcgKyBtYXJrZXIKICAgIHMgPSBzLnJlcGxhY2UobWFya2VyLCBpbnNlcnQsIDEpCiAgICBvcGVuKHAsICd3Jykud3JpdGUocykKICAgIHByaW50KCdQQVRDSEVEJykKZWxzZToKICAgIHByaW50KCdTS0lQUEVEIChhbHJlYWR5IHBhdGNoZWQgb3IgbWFya2VyIG5vdCBmb3VuZCknKQo= | base64 -d > /tmp/patch_caddy.py && python3 /tmp/patch_caddy.py; exec /app/start.sh\"",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "makeplane/plane-aio-community:v1.4.2"
                  },
                  "variables": {
                    "WEB_URL": {
                      "isOptional": false,
                      "description": "Belt-and-suspenders alongside APP_BASE_URL — start.sh sets this internally from DOMAIN_NAME+APP_PROTOCOL already, but setting it explicitly avoids relying on that derivation being correct.",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "AMQP_URL": {
                      "isOptional": false,
                      "description": "RabbitMQ connection string for background task processing (notifications, imports, exports). Vhost must be plane, matching RABBITMQ_DEFAULT_VHOST on the rabbitmq service.",
                      "defaultValue": "amqp://plane:${{rabbitmq.RABBITMQ_DEFAULT_PASS}}@${{rabbitmq.RAILWAY_PRIVATE_DOMAIN}}:5672/plane"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Redis connection string used for caching and session storage. Password must match redis's REDIS_PASSWORD.",
                      "defaultValue": "redis://default:${{redis.REDIS_PASSWORD}}@${{redis.RAILWAY_PRIVATE_DOMAIN}}:6379"
                    },
                    "AWS_REGION": {
                      "isOptional": false,
                      "description": "Required by the S3 client even though MinIO ignores real AWS regions — any valid-looking region string works.",
                      "defaultValue": "us-east-1"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Django cryptographic secret for sessions and tokens. Auto-generated per deployment if left as the shipped placeholder, but setting an explicit long random value here at publish time is safer than relying on first-boot autogeneration.",
                      "defaultValue": "{{SECRET_KEY}}"
                    },
                    "DOMAIN_NAME": {
                      "isOptional": false,
                      "description": "Bare hostname only, no https:// prefix. Confirmed live — a protocol prefix here breaks the container's own domain validation regex and the app refuses to boot.",
                      "defaultValue": "${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "APP_BASE_URL": {
                      "isOptional": false,
                      "description": "Main web app base URL. Same reasoning as ADMIN_BASE_URL.",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "APP_PROTOCOL": {
                      "isOptional": false,
                      "description": "Railway domains are always HTTPS; this must be https, not the container's internal default of http, or generated links/CORS will be wrong.",
                      "defaultValue": "https"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Full Postgres connection string. Must reference the postgres service's own generated password — never hardcode.",
                      "defaultValue": "postgresql://plane:${{postgres.POSTGRES_PASSWORD}}@${{postgres.RAILWAY_PRIVATE_DOMAIN}}:5432/plane"
                    },
                    "ADMIN_BASE_URL": {
                      "isOptional": false,
                      "description": "Required or the god-mode (instance admin setup) page hangs on an infinite loading spinner — confirmed live, this is not documented in the AIO README's env var list at all. Must include the https:// prefix (unlike DOMAIN_NAME). Same value as APP_BASE_URL/SPACE_BASE_URL for this single-domain all-in-one deploy.",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "SPACE_BASE_URL": {
                      "isOptional": false,
                      "description": "Public-project space frontend base URL. Same reasoning as ADMIN_BASE_URL — left unset, this and the other two base URLs come back null from /api/instances/ and break frontend routing.",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "FILE_SIZE_LIMIT": {
                      "isOptional": false,
                      "description": "Maximum file upload size in bytes (10MB). Image default is 5MB (5242880); doubled here for typical issue attachments.",
                      "defaultValue": "10485760"
                    },
                    "AWS_ACCESS_KEY_ID": {
                      "isOptional": false,
                      "description": "Must match minio's MINIO_ROOT_USER — this is the object storage access key, not a real AWS credential.",
                      "defaultValue": "${{minio.MINIO_ROOT_USER}}"
                    },
                    "AWS_S3_BUCKET_NAME": {
                      "isOptional": false,
                      "description": "Bucket name for file/attachment uploads. Plane's backend creates this bucket on first use if it doesn't exist — confirmed live, no manual mc mb step needed.",
                      "defaultValue": "uploads"
                    },
                    "AWS_S3_ENDPOINT_URL": {
                      "isOptional": false,
                      "description": "Critical — without this, the app defaults to real s3.amazonaws.com and every upload silently fails auth against MinIO credentials.",
                      "defaultValue": "http://${{minio.RAILWAY_PRIVATE_DOMAIN}}:9000"
                    },
                    "AWS_SECRET_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Must match minio's MINIO_ROOT_PASSWORD.",
                      "defaultValue": "${{minio.MINIO_ROOT_PASSWORD}}"
                    },
                    "LIVE_SERVER_SECRET_KEY": {
                      "isOptional": false,
                      "description": "Shared secret between the API and the real-time collaboration server. Same autogeneration caveat as SECRET_KEY.",
                      "defaultValue": "{{LIVE_SERVER_SECRET_KEY}}"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:80": {
                        "port": 80
                      }
                    }
                  }
                },
                "78b23b3a-d600-4ee6-9f82-3756b576ee52": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/minio-light.svg",
                  "name": "minio",
                  "deploy": {
                    "startCommand": "minio server /data --console-address :9001",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "minio/minio:latest"
                  },
                  "variables": {
                    "MINIO_ROOT_USER": {
                      "isOptional": false,
                      "description": "Object storage access key — referenced by plane's AWS_ACCESS_KEY_ID.",
                      "defaultValue": "{{MINIO_ROOT_USER}}"
                    },
                    "MINIO_ROOT_PASSWORD": {
                      "isOptional": false,
                      "description": "Object storage secret key — referenced by plane's AWS_SECRET_ACCESS_KEY.",
                      "defaultValue": "{{MINIO_ROOT_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "78b23b3a-d600-4ee6-9f82-3756b576ee52": {
                      "mountPath": "/data"
                    }
                  }
                },
                "9c852089-eacc-49da-bea5-44784027d98f": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/rabbitmq.svg",
                  "name": "rabbitmq",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "rabbitmq:3.13.6-management-alpine"
                  },
                  "variables": {
                    "RABBITMQ_DEFAULT_PASS": {
                      "isOptional": false,
                      "description": "Referenced by plane's AMQP_URL.",
                      "defaultValue": "{{RABBITMQ_DEFAULT_PASS}}"
                    },
                    "RABBITMQ_DEFAULT_USER": {
                      "isOptional": false,
                      "description": "Must match the username in plane's AMQP_URL.",
                      "defaultValue": "plane"
                    },
                    "RABBITMQ_DEFAULT_VHOST": {
                      "isOptional": false,
                      "description": "Must match the vhost path segment in plane's AMQP_URL.",
                      "defaultValue": "plane"
                    }
                  }
                },
                "fece2363-6855-4a3a-8a8b-25f399a1cb77": {
                  "icon": "https://cdn.sanity.io/images/sy1jschh/production/0ce0bfdcfbdbf69662b1116671f97c2dd788b655-157x157.svg",
                  "name": "redis",
                  "deploy": {
                    "startCommand": "redis-server --requirepass c5d9e230174739f604636bc749f61e6c --appendonly yes",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "redis:8.2.1"
                  },
                  "variables": {
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Used by the custom start command's --requirepass flag and referenced in plane's REDIS_URL.",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "fece2363-6855-4a3a-8a8b-25f399a1cb77": {
                      "mountPath": "/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {},
  "resources": {
    "expected_services": 5,
    "needs_volume": true
  },
  "generated_at": "2026-09-06T11:54:17.289Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-06T11:57:04.340Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_8355df16ca374d02b8e3",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 107,
    "typical_build_seconds": 0,
    "typical_start_seconds": 20,
    "slowest_service": "plane"
  }
}
