{
  "manifest_version": "1.0.0",
  "template": {
    "id": "aa0a2774-a4fc-4c36-bc8a-c29812ab9da1",
    "slug": "weblate-translation",
    "name": "Weblate",
    "description": "Web app for translating software, synced with your Git repository",
    "url": "https://railway.com/deploy/weblate-translation",
    "upstream": {
      "image": "axllent/mailpit:latest"
    }
  },
  "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": "mailpit",
      "source": {
        "image": "axllent/mailpit:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": true
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "weblate",
      "source": {
        "repo": "https://github.com/gridalpha/weblate-railway"
      },
      "needs_volume": true,
      "volume_mount_path": "/app/data",
      "http": true
    }
  ],
  "required_inputs": [
    {
      "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": "mailpit",
      "description": "Inbox web interface port",
      "secret": false,
      "strategy": "default",
      "default": "8025"
    },
    {
      "key": "MP_UI_AUTH",
      "service": "mailpit",
      "description": "Basic auth guarding the inbox",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "MP_DATABASE",
      "service": "mailpit",
      "description": "Message store on the volume",
      "secret": false,
      "strategy": "default",
      "default": "/data/mailpit.db"
    },
    {
      "key": "MP_MAX_MESSAGES",
      "service": "mailpit",
      "description": "Messages retained before pruning",
      "secret": false,
      "strategy": "default",
      "default": "5000"
    },
    {
      "key": "MP_UI_BIND_ADDR",
      "service": "mailpit",
      "description": "Inbox listener, dual stack",
      "secret": false,
      "strategy": "default",
      "default": "[::]:8025"
    },
    {
      "key": "MP_SMTP_BIND_ADDR",
      "service": "mailpit",
      "description": "Private SMTP listener",
      "secret": false,
      "strategy": "default",
      "default": "[::]:1025"
    },
    {
      "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"
    },
    {
      "key": "PORT",
      "service": "weblate",
      "description": "Port the bundled nginx listens on",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "REDIS_DB",
      "service": "weblate",
      "description": "Redis database index",
      "secret": false,
      "strategy": "default",
      "default": "1"
    },
    {
      "key": "REDIS_HOST",
      "service": "weblate",
      "description": "Private cache host",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PORT",
      "service": "weblate",
      "description": "Cache port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "weblate",
      "description": "Database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_HOST",
      "service": "weblate",
      "description": "Private database host",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_PORT",
      "service": "weblate",
      "description": "Database port",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "POSTGRES_USER",
      "service": "weblate",
      "description": "Database user",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "WEBLATE_DEBUG",
      "service": "weblate",
      "description": "Never enable in production",
      "secret": false,
      "strategy": "default",
      "default": "0"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "weblate",
      "description": "Cache password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "WEBLATE_LOGLEVEL",
      "service": "weblate",
      "description": "Application log verbosity",
      "secret": false,
      "strategy": "default",
      "default": "INFO"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "weblate",
      "description": "Database password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_SSL_MODE",
      "service": "weblate",
      "description": "TLS mode for the database connection",
      "secret": false,
      "strategy": "default",
      "default": "prefer"
    },
    {
      "key": "WEBLATE_TIME_ZONE",
      "service": "weblate",
      "description": "Time zone for dates and scheduling",
      "secret": false,
      "strategy": "default",
      "default": "UTC"
    },
    {
      "key": "WEBLATE_ADMIN_NAME",
      "service": "weblate",
      "description": "First administrator's display name",
      "secret": false,
      "strategy": "default",
      "default": "Weblate Admin"
    },
    {
      "key": "WEBLATE_EMAIL_HOST",
      "service": "weblate",
      "description": "SMTP host",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "WEBLATE_EMAIL_PORT",
      "service": "weblate",
      "description": "SMTP port",
      "secret": false,
      "strategy": "default",
      "default": "1025"
    },
    {
      "key": "WEBLATE_SITE_TITLE",
      "service": "weblate",
      "description": "Name shown in the interface",
      "secret": false,
      "strategy": "default",
      "default": "Weblate"
    },
    {
      "key": "WEBLATE_ADMIN_EMAIL",
      "service": "weblate",
      "description": "First administrator's email address",
      "secret": false,
      "strategy": "default",
      "default": "admin@example.com"
    },
    {
      "key": "WEBLATE_SITE_DOMAIN",
      "service": "weblate",
      "description": "Public hostname, required to boot",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "WEBLATE_ENABLE_HTTPS",
      "service": "weblate",
      "description": "HTTPS redirect, HSTS and secure cookies",
      "secret": false,
      "strategy": "default",
      "default": "1"
    },
    {
      "key": "WEBLATE_SERVER_EMAIL",
      "service": "weblate",
      "description": "Envelope sender for error mail",
      "secret": false,
      "strategy": "default",
      "default": "weblate@example.com"
    },
    {
      "key": "WEBLATE_EMAIL_USE_SSL",
      "service": "weblate",
      "description": "Plain SMTP on the private network",
      "secret": false,
      "strategy": "default",
      "default": "0"
    },
    {
      "key": "WEBLATE_EMAIL_USE_TLS",
      "service": "weblate",
      "description": "Plain SMTP on the private network",
      "secret": false,
      "strategy": "default",
      "default": "0"
    },
    {
      "key": "WEBLATE_REQUIRE_LOGIN",
      "service": "weblate",
      "description": "Require sign-in to browse projects",
      "secret": false,
      "strategy": "default",
      "default": "1"
    },
    {
      "key": "WEBLATE_ADMIN_PASSWORD",
      "service": "weblate",
      "description": "First administrator's password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "WEBLATE_IP_PROXY_HEADER",
      "service": "weblate",
      "description": "Read client address from forwarded header",
      "secret": false,
      "strategy": "default",
      "default": "HTTP_X_FORWARDED_FOR"
    },
    {
      "key": "WEBLATE_REGISTRATION_OPEN",
      "service": "weblate",
      "description": "Public sign-up closed by default",
      "secret": false,
      "strategy": "default",
      "default": "0"
    },
    {
      "key": "WEBLATE_DEFAULT_FROM_EMAIL",
      "service": "weblate",
      "description": "From address on outgoing mail",
      "secret": false,
      "strategy": "default",
      "default": "weblate@example.com"
    },
    {
      "key": "WEBLATE_SECURE_PROXY_SSL_HEADER",
      "service": "weblate",
      "description": "Trust the edge's TLS termination",
      "secret": false,
      "strategy": "default",
      "default": "HTTP_X_FORWARDED_PROTO,https"
    },
    {
      "key": "WEBLATE_TRUSTED_PROXY_ADDRESSES",
      "service": "weblate",
      "description": "Railway edge ranges",
      "secret": false,
      "strategy": "default",
      "default": "100.64.0.0/10 152.233.0.0/17 fd00::/8"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "weblate",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "30"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "weblate-translation"
      }
    },
    "cli": "railway deploy --template weblate-translation",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "aa0a2774-a4fc-4c36-bc8a-c29812ab9da1",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "0a2f3a91-63d7-4264-83eb-57565b02371f": {
                  "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": {
                    "0a2f3a91-63d7-4264-83eb-57565b02371f": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "367263b9-f4be-402a-9db6-02e046c0368b": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/mailpit.svg",
                  "name": "mailpit",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/livez",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "axllent/mailpit:latest"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Inbox web interface port",
                      "defaultValue": "8025"
                    },
                    "MP_UI_AUTH": {
                      "isOptional": false,
                      "description": "Basic auth guarding the inbox",
                      "defaultValue": "{{MP_UI_AUTH}}"
                    },
                    "MP_DATABASE": {
                      "isOptional": false,
                      "description": "Message store on the volume",
                      "defaultValue": "/data/mailpit.db"
                    },
                    "MP_MAX_MESSAGES": {
                      "isOptional": false,
                      "description": "Messages retained before pruning",
                      "defaultValue": "5000"
                    },
                    "MP_UI_BIND_ADDR": {
                      "isOptional": false,
                      "description": "Inbox listener, dual stack",
                      "defaultValue": "[::]:8025"
                    },
                    "MP_SMTP_BIND_ADDR": {
                      "isOptional": false,
                      "description": "Private SMTP listener",
                      "defaultValue": "[::]:1025"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8025": {
                        "port": 8025
                      }
                    }
                  },
                  "volumeMounts": {
                    "367263b9-f4be-402a-9db6-02e046c0368b": {
                      "mountPath": "/data"
                    }
                  }
                },
                "450a8eed-b6be-47c1-a161-35a372b56ea4": {
                  "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": {
                    "450a8eed-b6be-47c1-a161-35a372b56ea4": {
                      "mountPath": "/data"
                    }
                  }
                },
                "ce23a983-50d6-439d-8302-ac58242722e2": {
                  "icon": "https://raw.githubusercontent.com/WeblateOrg/weblate/main/weblate/static/weblate.svg",
                  "name": "weblate",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/healthz/",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/weblate-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Port the bundled nginx listens on",
                      "defaultValue": "8080"
                    },
                    "REDIS_DB": {
                      "isOptional": false,
                      "description": "Redis database index",
                      "defaultValue": "1"
                    },
                    "REDIS_HOST": {
                      "isOptional": false,
                      "description": "Private cache host",
                      "defaultValue": "${{Redis.REDISHOST}}"
                    },
                    "REDIS_PORT": {
                      "isOptional": false,
                      "description": "Cache port",
                      "defaultValue": "${{Redis.REDISPORT}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Database name",
                      "defaultValue": "${{Postgres.PGDATABASE}}"
                    },
                    "POSTGRES_HOST": {
                      "isOptional": false,
                      "description": "Private database host",
                      "defaultValue": "${{Postgres.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "POSTGRES_PORT": {
                      "isOptional": false,
                      "description": "Database port",
                      "defaultValue": "5432"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Database user",
                      "defaultValue": "${{Postgres.PGUSER}}"
                    },
                    "WEBLATE_DEBUG": {
                      "isOptional": false,
                      "description": "Never enable in production",
                      "defaultValue": "0"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Cache password",
                      "defaultValue": "${{Redis.REDISPASSWORD}}"
                    },
                    "WEBLATE_LOGLEVEL": {
                      "isOptional": false,
                      "description": "Application log verbosity",
                      "defaultValue": "INFO"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Database password",
                      "defaultValue": "${{Postgres.PGPASSWORD}}"
                    },
                    "POSTGRES_SSL_MODE": {
                      "isOptional": false,
                      "description": "TLS mode for the database connection",
                      "defaultValue": "prefer"
                    },
                    "WEBLATE_TIME_ZONE": {
                      "isOptional": false,
                      "description": "Time zone for dates and scheduling",
                      "defaultValue": "UTC"
                    },
                    "WEBLATE_ADMIN_NAME": {
                      "isOptional": false,
                      "description": "First administrator's display name",
                      "defaultValue": "Weblate Admin"
                    },
                    "WEBLATE_EMAIL_HOST": {
                      "isOptional": false,
                      "description": "SMTP host",
                      "defaultValue": "${{mailpit.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "WEBLATE_EMAIL_PORT": {
                      "isOptional": false,
                      "description": "SMTP port",
                      "defaultValue": "1025"
                    },
                    "WEBLATE_SITE_TITLE": {
                      "isOptional": false,
                      "description": "Name shown in the interface",
                      "defaultValue": "Weblate"
                    },
                    "WEBLATE_ADMIN_EMAIL": {
                      "isOptional": false,
                      "description": "First administrator's email address",
                      "defaultValue": "admin@example.com"
                    },
                    "WEBLATE_SITE_DOMAIN": {
                      "isOptional": false,
                      "description": "Public hostname, required to boot",
                      "defaultValue": "${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "WEBLATE_ENABLE_HTTPS": {
                      "isOptional": false,
                      "description": "HTTPS redirect, HSTS and secure cookies",
                      "defaultValue": "1"
                    },
                    "WEBLATE_SERVER_EMAIL": {
                      "isOptional": false,
                      "description": "Envelope sender for error mail",
                      "defaultValue": "weblate@example.com"
                    },
                    "WEBLATE_EMAIL_USE_SSL": {
                      "isOptional": false,
                      "description": "Plain SMTP on the private network",
                      "defaultValue": "0"
                    },
                    "WEBLATE_EMAIL_USE_TLS": {
                      "isOptional": false,
                      "description": "Plain SMTP on the private network",
                      "defaultValue": "0"
                    },
                    "WEBLATE_REQUIRE_LOGIN": {
                      "isOptional": false,
                      "description": "Require sign-in to browse projects",
                      "defaultValue": "1"
                    },
                    "WEBLATE_ADMIN_PASSWORD": {
                      "isOptional": false,
                      "description": "First administrator's password",
                      "defaultValue": "{{WEBLATE_ADMIN_PASSWORD}}"
                    },
                    "WEBLATE_IP_PROXY_HEADER": {
                      "isOptional": false,
                      "description": "Read client address from forwarded header",
                      "defaultValue": "HTTP_X_FORWARDED_FOR"
                    },
                    "WEBLATE_REGISTRATION_OPEN": {
                      "isOptional": false,
                      "description": "Public sign-up closed by default",
                      "defaultValue": "0"
                    },
                    "WEBLATE_DEFAULT_FROM_EMAIL": {
                      "isOptional": false,
                      "description": "From address on outgoing mail",
                      "defaultValue": "weblate@example.com"
                    },
                    "WEBLATE_SECURE_PROXY_SSL_HEADER": {
                      "isOptional": false,
                      "description": "Trust the edge's TLS termination",
                      "defaultValue": "HTTP_X_FORWARDED_PROTO,https"
                    },
                    "WEBLATE_TRUSTED_PROXY_ADDRESSES": {
                      "isOptional": false,
                      "description": "Railway edge ranges",
                      "defaultValue": "100.64.0.0/10 152.233.0.0/17 fd00::/8"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "30"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8080": {
                        "port": 8080
                      }
                    }
                  },
                  "volumeMounts": {
                    "ce23a983-50d6-439d-8302-ac58242722e2": {
                      "mountPath": "/app/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "mailpit",
      "method": "GET",
      "path": "/livez",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 4,
    "needs_volume": true
  },
  "generated_at": "2026-09-20T16:14:49.616Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-19T13:33:00.728Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_b78bb126bb8d472998c8",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 203,
    "typical_build_seconds": 50,
    "typical_start_seconds": 81,
    "slowest_service": "weblate"
  }
}
