{
  "manifest_version": "1.0.0",
  "template": {
    "id": "5c2cb63e-3a1f-4391-a868-603f6e868c84",
    "slug": "penpot-figma-alternative",
    "name": "Penpot | Open-Source Figma Alternative",
    "description": "Self host Pentop. UI/UX design, prototype, real-time collaboration & more",
    "url": "https://railway.com/deploy/penpot-figma-alternative",
    "upstream": {
      "image": "minio/minio:latest"
    }
  },
  "status": "unvalidated",
  "validated_at": null,
  "success_rate_30d": null,
  "services": [
    {
      "name": "MinIO",
      "source": {
        "image": "minio/minio:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": true
    },
    {
      "name": "Valkey",
      "source": {
        "image": "valkey/valkey:8.1"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "Backend",
      "source": {
        "image": "penpotapp/backend:2.14.3"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "Exporter",
      "source": {
        "image": "penpotapp/exporter:2.14.3"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "Frontend",
      "source": {
        "image": "penpotapp/frontend:2.14.3"
      },
      "needs_volume": false,
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "MinIO",
      "description": "Console port for public domain",
      "secret": false,
      "strategy": "default",
      "default": "9001"
    },
    {
      "key": "MINIO_ROOT_USER",
      "service": "MinIO",
      "description": "Admin access key",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "MINIO_ROOT_PASSWORD",
      "service": "MinIO",
      "description": "Admin secret key",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "VALKEY_EXTRA_FLAGS",
      "service": "Valkey",
      "description": "Set flags",
      "secret": true,
      "strategy": "default",
      "default": "--maxmemory 128mb --maxmemory-policy volatile-lfu"
    },
    {
      "key": "PENPOT_FLAGS",
      "service": "Backend",
      "description": "Feature flags",
      "secret": false,
      "strategy": "default",
      "default": "disable-email-verification enable-prepl-server disable-secure-session-cookies enable-login-with-password"
    },
    {
      "key": "PENPOT_REDIS_URI",
      "service": "Backend",
      "description": "Valkey connection URI",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "AWS_ACCESS_KEY_ID",
      "service": "Backend",
      "description": "MinIO access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PENPOT_PUBLIC_URI",
      "service": "Backend",
      "description": "Public-facing URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "PENPOT_SECRET_KEY",
      "service": "Backend",
      "description": "Session signing key (stable, shared with Exporter)",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "PENPOT_DATABASE_URI",
      "service": "Backend",
      "description": "Postgres connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "AWS_SECRET_ACCESS_KEY",
      "service": "Backend",
      "description": "MinIO secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PENPOT_DATABASE_PASSWORD",
      "service": "Backend",
      "description": "Database password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PENPOT_DATABASE_USERNAME",
      "service": "Backend",
      "description": "Database user",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PENPOT_SMTP_DEFAULT_FROM",
      "service": "Backend",
      "description": "Default sender email",
      "secret": false,
      "strategy": "default",
      "default": "no-reply@penpot.local"
    },
    {
      "key": "PENPOT_TELEMETRY_ENABLED",
      "service": "Backend",
      "description": "Disable telemetry",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "PENPOT_SMTP_DEFAULT_REPLY_TO",
      "service": "Backend",
      "description": "Default reply-to email",
      "secret": false,
      "strategy": "default",
      "default": "no-reply@penpot.local"
    },
    {
      "key": "PENPOT_OBJECTS_STORAGE_BACKEND",
      "service": "Backend",
      "description": "Use S3 storage (MinIO)",
      "secret": false,
      "strategy": "default",
      "default": "s3"
    },
    {
      "key": "PENPOT_HTTP_SERVER_MAX_BODY_SIZE",
      "service": "Backend",
      "description": "Max upload size",
      "secret": false,
      "strategy": "default",
      "default": "367001600"
    },
    {
      "key": "PENPOT_OBJECTS_STORAGE_S3_BUCKET",
      "service": "Backend",
      "description": "S3 bucket name",
      "secret": false,
      "strategy": "default",
      "default": "penpot-assets"
    },
    {
      "key": "PENPOT_OBJECTS_STORAGE_S3_REGION",
      "service": "Backend",
      "description": "S3 region",
      "secret": false,
      "strategy": "default",
      "default": "us-east-1"
    },
    {
      "key": "PENPOT_OBJECTS_STORAGE_S3_ENDPOINT",
      "service": "Backend",
      "description": "MinIO S3 API",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PENPOT_HTTP_SERVER_MAX_MULTIPART_BODY_SIZE",
      "service": "Backend",
      "description": "Max multipart body size",
      "secret": false,
      "strategy": "default",
      "default": "367001600"
    },
    {
      "key": "PENPOT_REDIS_URI",
      "service": "Exporter",
      "description": "Valkey connection URI",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PENPOT_PUBLIC_URI",
      "service": "Exporter",
      "description": "Frontend internal URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PENPOT_SECRET_KEY",
      "service": "Exporter",
      "description": "Shared session key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Postgres data storage directory",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Internal Postgres host address",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Postgres server listening port",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "Default Postgres username",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "Default database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "Password for Postgres user",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Initial database created on startup",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Internal Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "Default database superuser name",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "Self-signed SSL certificate validity",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Postgres database user password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_PUBLIC_URL",
      "service": "Postgres",
      "description": "Public Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Graceful shutdown draining duration",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "PORT",
      "service": "Frontend",
      "description": "Nginx listening port",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "PENPOT_FLAGS",
      "service": "Frontend",
      "description": "Feature flags",
      "secret": false,
      "strategy": "default",
      "default": "disable-email-verification enable-login-with-password"
    },
    {
      "key": "PENPOT_BACKEND_URI",
      "service": "Frontend",
      "description": "Backend proxy URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PENPOT_EXPORTER_URI",
      "service": "Frontend",
      "description": "Exporter proxy URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PENPOT_HTTP_SERVER_MAX_BODY_SIZE",
      "service": "Frontend",
      "description": "Max upload size (350MB)",
      "secret": false,
      "strategy": "default",
      "default": "367001600"
    },
    {
      "key": "PENPOT_HTTP_SERVER_MAX_MULTIPART_BODY_SIZE",
      "service": "Frontend",
      "description": "Max multipart body size",
      "secret": false,
      "strategy": "default",
      "default": "367001600"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "penpot-figma-alternative"
      }
    },
    "cli": "railway deploy --template penpot-figma-alternative",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "5c2cb63e-3a1f-4391-a868-603f6e868c84",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "37a957f1-37aa-4a1d-838f-952bc839a0e0": {
                  "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": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Console port for public domain",
                      "defaultValue": "9001"
                    },
                    "MINIO_ROOT_USER": {
                      "isOptional": false,
                      "description": "Admin access key",
                      "defaultValue": "{{MINIO_ROOT_USER}}"
                    },
                    "MINIO_ROOT_PASSWORD": {
                      "isOptional": false,
                      "description": "Admin secret key",
                      "defaultValue": "{{MINIO_ROOT_PASSWORD}}"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>": {}
                    }
                  },
                  "volumeMounts": {
                    "37a957f1-37aa-4a1d-838f-952bc839a0e0": {
                      "mountPath": "/data"
                    }
                  }
                },
                "7df2d18b-f88f-44fd-b522-7768bc627db7": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/valkey.svg",
                  "name": "Valkey",
                  "deploy": {
                    "startCommand": "valkey-server --maxmemory 128mb --maxmemory-policy volatile-lfu",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "valkey/valkey:8.1"
                  },
                  "variables": {
                    "VALKEY_EXTRA_FLAGS": {
                      "isOptional": false,
                      "description": "Set flags",
                      "defaultValue": "--maxmemory 128mb --maxmemory-policy volatile-lfu"
                    }
                  }
                },
                "927eb804-406c-43b1-b545-f89459aa482e": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/penpot-light.svg",
                  "name": "Backend",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "penpotapp/backend:2.14.3"
                  },
                  "variables": {
                    "PENPOT_FLAGS": {
                      "isOptional": false,
                      "description": "Feature flags",
                      "defaultValue": "disable-email-verification enable-prepl-server disable-secure-session-cookies enable-login-with-password"
                    },
                    "PENPOT_REDIS_URI": {
                      "isOptional": false,
                      "description": "Valkey connection URI",
                      "defaultValue": "redis://${{Valkey.RAILWAY_PRIVATE_DOMAIN}}/0"
                    },
                    "AWS_ACCESS_KEY_ID": {
                      "isOptional": false,
                      "description": "MinIO access key",
                      "defaultValue": "${{MinIO.MINIO_ROOT_USER}}"
                    },
                    "PENPOT_PUBLIC_URI": {
                      "isOptional": false,
                      "description": "Public-facing URL",
                      "defaultValue": "https://${{Frontend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "PENPOT_SECRET_KEY": {
                      "isOptional": false,
                      "description": "Session signing key (stable, shared with Exporter)",
                      "defaultValue": "{{PENPOT_SECRET_KEY}}"
                    },
                    "PENPOT_DATABASE_URI": {
                      "isOptional": false,
                      "description": "Postgres connection",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "AWS_SECRET_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "MinIO secret key",
                      "defaultValue": "${{MinIO.MINIO_ROOT_PASSWORD}}"
                    },
                    "PENPOT_DATABASE_PASSWORD": {
                      "isOptional": false,
                      "description": "Database password",
                      "defaultValue": "${{Postgres.POSTGRES_PASSWORD}}"
                    },
                    "PENPOT_DATABASE_USERNAME": {
                      "isOptional": false,
                      "description": "Database user",
                      "defaultValue": "${{Postgres.POSTGRES_USER}}"
                    },
                    "PENPOT_SMTP_DEFAULT_FROM": {
                      "isOptional": false,
                      "description": "Default sender email",
                      "defaultValue": "no-reply@penpot.local"
                    },
                    "PENPOT_TELEMETRY_ENABLED": {
                      "isOptional": false,
                      "description": "Disable telemetry",
                      "defaultValue": "false"
                    },
                    "PENPOT_SMTP_DEFAULT_REPLY_TO": {
                      "isOptional": false,
                      "description": "Default reply-to email",
                      "defaultValue": "no-reply@penpot.local"
                    },
                    "PENPOT_OBJECTS_STORAGE_BACKEND": {
                      "isOptional": false,
                      "description": "Use S3 storage (MinIO)",
                      "defaultValue": "s3"
                    },
                    "PENPOT_HTTP_SERVER_MAX_BODY_SIZE": {
                      "isOptional": false,
                      "description": "Max upload size",
                      "defaultValue": "367001600"
                    },
                    "PENPOT_OBJECTS_STORAGE_S3_BUCKET": {
                      "isOptional": false,
                      "description": "S3 bucket name",
                      "defaultValue": "penpot-assets"
                    },
                    "PENPOT_OBJECTS_STORAGE_S3_REGION": {
                      "isOptional": false,
                      "description": "S3 region",
                      "defaultValue": "us-east-1"
                    },
                    "PENPOT_OBJECTS_STORAGE_S3_ENDPOINT": {
                      "isOptional": false,
                      "description": "MinIO S3 API",
                      "defaultValue": "http://${{MinIO.RAILWAY_PRIVATE_DOMAIN}}:9000"
                    },
                    "PENPOT_HTTP_SERVER_MAX_MULTIPART_BODY_SIZE": {
                      "isOptional": false,
                      "description": "Max multipart body size",
                      "defaultValue": "367001600"
                    }
                  }
                },
                "b9b920e8-6ce4-4736-a00e-470a937e2732": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/penpot-light.svg",
                  "name": "Exporter",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "penpotapp/exporter:2.14.3"
                  },
                  "variables": {
                    "PENPOT_REDIS_URI": {
                      "isOptional": false,
                      "description": "Valkey connection URI",
                      "defaultValue": "redis://${{Valkey.RAILWAY_PRIVATE_DOMAIN}}/0"
                    },
                    "PENPOT_PUBLIC_URI": {
                      "isOptional": false,
                      "description": "Frontend internal URL",
                      "defaultValue": "http://${{Frontend.RAILWAY_PRIVATE_DOMAIN}}:8080"
                    },
                    "PENPOT_SECRET_KEY": {
                      "isOptional": false,
                      "description": "Shared session key",
                      "defaultValue": "${{Backend.PENPOT_SECRET_KEY}}"
                    }
                  }
                },
                "d1ea973b-e6ad-48b7-8d31-44e8678010b6": {
                  "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": "Postgres data storage directory",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Internal Postgres host address",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Postgres server listening port",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "Default Postgres username",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "Default database name",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "Password for Postgres user",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Initial database created on startup",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Internal Postgres connection string",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Default database superuser name",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "Self-signed SSL certificate validity",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Postgres database user password",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_PUBLIC_URL": {
                      "isOptional": false,
                      "description": "Public Postgres connection string",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{PGDATABASE}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Graceful shutdown draining duration",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "d1ea973b-e6ad-48b7-8d31-44e8678010b6": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  },
                  "haTemplateCode": "postgres-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxy",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "Routes traffic to the primary",
                      "defaultValue": 3
                    },
                    "replica": {
                      "label": "Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5,
                        6,
                        7
                      ],
                      "nodeLabel": "Postgres",
                      "description": "Streaming replicas for automatic failover",
                      "defaultValue": 2
                    },
                    "internal": {
                      "label": "Coordinator Nodes",
                      "options": [
                        3,
                        5,
                        7,
                        9
                      ],
                      "nodeLabel": "etcd",
                      "defaultValue": 3
                    },
                    "description": "This will convert your Postgres database to an HA cluster with Patroni failover and etcd consensus."
                  }
                },
                "e89a8eea-d358-4476-aba9-847abbc13c52": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/penpot-light.svg",
                  "name": "Frontend",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "penpotapp/frontend:2.14.3"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Nginx listening port",
                      "defaultValue": "8080"
                    },
                    "PENPOT_FLAGS": {
                      "isOptional": false,
                      "description": "Feature flags",
                      "defaultValue": "disable-email-verification enable-login-with-password"
                    },
                    "PENPOT_BACKEND_URI": {
                      "isOptional": false,
                      "description": "Backend proxy URL",
                      "defaultValue": "http://${{Backend.RAILWAY_PRIVATE_DOMAIN}}:6060"
                    },
                    "PENPOT_EXPORTER_URI": {
                      "isOptional": false,
                      "description": "Exporter proxy URL",
                      "defaultValue": "http://${{Exporter.RAILWAY_PRIVATE_DOMAIN}}:6061"
                    },
                    "PENPOT_HTTP_SERVER_MAX_BODY_SIZE": {
                      "isOptional": false,
                      "description": "Max upload size (350MB)",
                      "defaultValue": "367001600"
                    },
                    "PENPOT_HTTP_SERVER_MAX_MULTIPART_BODY_SIZE": {
                      "isOptional": false,
                      "description": "Max multipart body size",
                      "defaultValue": "367001600"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>": {}
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {},
  "resources": {
    "expected_services": 6,
    "needs_volume": true
  },
  "generated_at": "2026-09-08T11:54:27.954Z",
  "generator_version": "0.1.0"
}
