{
  "manifest_version": "1.0.0",
  "template": {
    "id": "85445cd1-826d-4839-9021-238fb32ed69d",
    "slug": "vikunja-230-w-paradedb-redis",
    "name": "Vikunja 2.3.0 (w/ ParadeDB, Redis)",
    "description": "Solid task manager with mobile app",
    "url": "https://railway.com/deploy/vikunja-230-w-paradedb-redis",
    "upstream": {
      "image": "vikunja/vikunja:2.3.0"
    }
  },
  "services": [
    {
      "name": "Vikunja",
      "source": {
        "image": "vikunja/vikunja:2.3.0"
      },
      "needs_volume": true,
      "volume_mount_path": "/app/vikunja/files",
      "http": true
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2.1"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "tcp_ports": [
        6379
      ],
      "http": false
    },
    {
      "name": "ParadeDB",
      "source": {
        "image": "paradedb/paradedb:0.23.0-pg17"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "Vikunja",
      "description": "Port",
      "secret": false,
      "strategy": "default",
      "default": "3456"
    },
    {
      "key": "RAILWAY_RUN_UID",
      "service": "Vikunja",
      "description": "Mount storage as root user for files persistency",
      "secret": false,
      "strategy": "default",
      "default": "0"
    },
    {
      "key": "VIKUNJA_REDIS_DB",
      "service": "Vikunja",
      "description": "0 means default database",
      "secret": false,
      "strategy": "default",
      "default": "0"
    },
    {
      "key": "VIKUNJA_REDIS_HOST",
      "service": "Vikunja",
      "description": "The host of the redis server including its port.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VIKUNJA_MAILER_PORT",
      "service": "Vikunja",
      "description": "SMTP Host port. NOTE: If you're unable to send mail and the only error you see in the logs is an EOF, try setting the port to 25.",
      "secret": false,
      "strategy": "default",
      "default": "587"
    },
    {
      "key": "VIKUNJA_SERVICE_MOTD",
      "service": "Vikunja",
      "description": "Set the motd message, available from the /info endpoint",
      "secret": false,
      "strategy": "default",
      "default": "Hello"
    },
    {
      "key": "VIKUNJA_DATABASE_HOST",
      "service": "Vikunja",
      "description": "Database and Port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VIKUNJA_DATABASE_TYPE",
      "service": "Vikunja",
      "description": "Database type",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "VIKUNJA_DATABASE_USER",
      "service": "Vikunja",
      "description": "Database user",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VIKUNJA_REDIS_ENABLED",
      "service": "Vikunja",
      "description": "Whether to enable redis or not",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "VIKUNJA_MAILER_ENABLED",
      "service": "Vikunja",
      "description": "Whether to enable the mailer or not. If it is disabled, all users are enabled right away and password reset is not possible.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "VIKUNJA_REDIS_PASSWORD",
      "service": "Vikunja",
      "description": "The password used to authenticate against the redis server",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VIKUNJA_SERVICE_SECRET",
      "service": "Vikunja",
      "description": "32-character secret",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "VIKUNJA_MAILER_AUTHTYPE",
      "service": "Vikunja",
      "description": "SMTP Auth Type. Can be either plain, login or cram-md5.",
      "secret": false,
      "strategy": "default",
      "default": "plain"
    },
    {
      "key": "VIKUNJA_MAILER_FORCESSL",
      "service": "Vikunja",
      "description": "By default, Vikunja will try to connect with starttls, use this option to force it to use ssl.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "VIKUNJA_SERVICE_TIMEZONE",
      "service": "Vikunja",
      "description": "The time zone all timestamps are in.  Time zones have to use offical tz database name.",
      "secret": false,
      "strategy": "default",
      "default": "GMT"
    },
    {
      "key": "VIKUNJA_DATABASE_DATABASE",
      "service": "Vikunja",
      "description": "Database name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VIKUNJA_DATABASE_PASSWORD",
      "service": "Vikunja",
      "description": "Database user password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VIKUNJA_SERVICE_INTERFACE",
      "service": "Vikunja",
      "description": "Port on which to run the webserver",
      "secret": false,
      "strategy": "default",
      "default": ":3456"
    },
    {
      "key": "VIKUNJA_SERVICE_PUBLICURL",
      "service": "Vikunja",
      "description": "Railway Public Domain",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "VIKUNJA_SERVICE_ENABLETOTP",
      "service": "Vikunja",
      "description": "Whether Time-based one-time password (TOTP) is enabled.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "VIKUNJA_MAILER_SKIPTLSVERIFY",
      "service": "Vikunja",
      "description": "Whether to skip verification of the tls certificate on the server",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "VIKUNJA_SERVICE_ENABLECALDAV",
      "service": "Vikunja",
      "description": "Enable the caldav endpoint",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "VIKUNJA_SERVICE_CUSTOMLOGOURL",
      "service": "Vikunja",
      "description": "Allow using a custom logo via external URL.",
      "secret": false,
      "strategy": "default",
      "default": "https://s3-eu-west-1.amazonaws.com/tpd/logos/4ab0af560000640005005a5a/0x0.png"
    },
    {
      "key": "VIKUNJA_SERVICE_MAXITEMSPERPAGE",
      "service": "Vikunja",
      "description": "The max number of items which can be returned per page",
      "secret": false,
      "strategy": "default",
      "default": "50"
    },
    {
      "key": "VIKUNJA_SERVICE_CUSTOMLOGOURLDARK",
      "service": "Vikunja",
      "description": "Allow using a custom logo for dark mode via external URL. If not set, the regular logo will be used for both light and dark modes.",
      "secret": false,
      "strategy": "default",
      "default": "https://s3-eu-west-1.amazonaws.com/tpd/logos/4ab0af560000640005005a5a/0x0.png"
    },
    {
      "key": "VIKUNJA_SERVICE_ENABLELINKSHARING",
      "service": "Vikunja",
      "description": "Enable sharing of project via a link",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "VIKUNJA_SERVICE_ENABLEPUBLICTEAMS",
      "service": "Vikunja",
      "description": "Enables the public team feature. If enabled, it is possible to configure teams to be public, which makes them discoverable when sharing a project, therefore not only showing teams the user is member of.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "VIKUNJA_SERVICE_ENABLEREGISTRATION",
      "service": "Vikunja",
      "description": "Whether to let new users registering themselves or not",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "VIKUNJA_SERVICE_ENABLETASKCOMMENTS",
      "service": "Vikunja",
      "description": "Whether task comments should be enabled or not",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "VIKUNJA_SERVICE_ENABLEUSERDELETION",
      "service": "Vikunja",
      "description": "If true, will allow users to request the complete deletion of their account.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "VIKUNJA_SERVICE_ENABLEEMAILREMINDERS",
      "service": "Vikunja",
      "description": "If enabled, Vikunja will send an email to everyone who is either assigned to a task or created it when a task reminder is due.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "VIKUNJA_SERVICE_ENABLETASKATTACHMENTS",
      "service": "Vikunja",
      "description": "Whether to enable task attachments or not",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Provide a value for REDISHOST.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Provide a value for REDISPORT.",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Provide a value for REDISUSER.",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Connection string for connecting to redis using the private network",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Provide a value for REDISPASSWORD.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Provide a value for REDIS_PASSWORD.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "REDIS_PUBLIC_URL",
      "service": "Redis",
      "description": "Connection string for connecting to redis externally",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATA",
      "service": "ParadeDB",
      "description": "Location where the database will be initialized",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "ParadeDB",
      "description": "Railway TCP Proxy Domain",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "ParadeDB",
      "description": "Required variable for Data panel",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "ParadeDB",
      "description": "Required variable for Data panel",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "ParadeDB",
      "description": "Required variable for Data panel",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "ParadeDB",
      "description": "Required variable for Data panel",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "ParadeDB",
      "description": "Default database created when image is started.",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "ParadeDB",
      "description": "URL to connect to Postgres database",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "ParadeDB",
      "description": "User to connect to Postgres DB",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "ParadeDB",
      "description": "SSL certificate expiry in days.",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "ParadeDB",
      "description": "Password to connect to DB",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "vikunja-230-w-paradedb-redis"
      }
    },
    "cli": "railway deploy --template vikunja-230-w-paradedb-redis",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "85445cd1-826d-4839-9021-238fb32ed69d",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "f00f54e3-789c-4257-8201-8f502e84cd79": {
                  "icon": "https://www.gravatar.com/avatar/52b611946d0e7d9e95af65917682c12d?s=120&r=g&d=404",
                  "name": "Vikunja",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/health",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "vikunja/vikunja:2.3.0"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Port",
                      "defaultValue": "3456"
                    },
                    "RAILWAY_RUN_UID": {
                      "isOptional": false,
                      "description": "Mount storage as root user for files persistency",
                      "defaultValue": "0"
                    },
                    "VIKUNJA_REDIS_DB": {
                      "description": "0 means default database",
                      "defaultValue": "0"
                    },
                    "VIKUNJA_REDIS_HOST": {
                      "description": "The host of the redis server including its port.",
                      "defaultValue": "${{Redis.REDISHOST}}:6379"
                    },
                    "VIKUNJA_MAILER_HOST": {
                      "isOptional": true,
                      "description": "SMTP Host",
                      "defaultValue": ""
                    },
                    "VIKUNJA_MAILER_PORT": {
                      "description": "SMTP Host port. NOTE: If you're unable to send mail and the only error you see in the logs is an EOF, try setting the port to 25.",
                      "defaultValue": "587"
                    },
                    "VIKUNJA_SERVICE_MOTD": {
                      "description": "Set the motd message, available from the /info endpoint",
                      "defaultValue": "Hello"
                    },
                    "VIKUNJA_DATABASE_HOST": {
                      "isOptional": false,
                      "description": "Database and Port",
                      "defaultValue": "${{ParadeDB.PGHOST}}:${{ParadeDB.PGPORT}}"
                    },
                    "VIKUNJA_DATABASE_TYPE": {
                      "isOptional": false,
                      "description": "Database type",
                      "defaultValue": "postgres"
                    },
                    "VIKUNJA_DATABASE_USER": {
                      "isOptional": false,
                      "description": "Database user",
                      "defaultValue": "${{ParadeDB.PGUSER}}"
                    },
                    "VIKUNJA_REDIS_ENABLED": {
                      "description": "Whether to enable redis or not",
                      "defaultValue": "true"
                    },
                    "VIKUNJA_MAILER_ENABLED": {
                      "description": "Whether to enable the mailer or not. If it is disabled, all users are enabled right away and password reset is not possible.",
                      "defaultValue": "false"
                    },
                    "VIKUNJA_REDIS_PASSWORD": {
                      "description": "The password used to authenticate against the redis server",
                      "defaultValue": "${{Redis.REDISPASSWORD}}"
                    },
                    "VIKUNJA_SERVICE_SECRET": {
                      "isOptional": false,
                      "description": "32-character secret",
                      "defaultValue": "{{VIKUNJA_SERVICE_SECRET}}"
                    },
                    "VIKUNJA_MAILER_AUTHTYPE": {
                      "description": "SMTP Auth Type. Can be either plain, login or cram-md5.",
                      "defaultValue": "plain"
                    },
                    "VIKUNJA_MAILER_FORCESSL": {
                      "description": "By default, Vikunja will try to connect with starttls, use this option to force it to use ssl.",
                      "defaultValue": "false"
                    },
                    "VIKUNJA_MAILER_PASSWORD": {
                      "isOptional": true,
                      "description": "SMTP password",
                      "defaultValue": ""
                    },
                    "VIKUNJA_MAILER_USERNAME": {
                      "isOptional": true,
                      "description": "SMTP username",
                      "defaultValue": ""
                    },
                    "VIKUNJA_MAILER_FROMEMAIL": {
                      "isOptional": true,
                      "description": "The default from address when sending emails",
                      "defaultValue": ""
                    },
                    "VIKUNJA_SERVICE_TIMEZONE": {
                      "description": "The time zone all timestamps are in.  Time zones have to use offical tz database name.",
                      "defaultValue": "GMT"
                    },
                    "VIKUNJA_DATABASE_DATABASE": {
                      "isOptional": false,
                      "description": "Database name",
                      "defaultValue": "${{ParadeDB.PGDATABASE}}"
                    },
                    "VIKUNJA_DATABASE_PASSWORD": {
                      "isOptional": false,
                      "description": "Database user password",
                      "defaultValue": "${{ParadeDB.PGPASSWORD}}"
                    },
                    "VIKUNJA_SERVICE_INTERFACE": {
                      "description": "Port on which to run the webserver",
                      "defaultValue": ":3456"
                    },
                    "VIKUNJA_SERVICE_PUBLICURL": {
                      "isOptional": false,
                      "description": "Railway Public Domain",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}/"
                    },
                    "VIKUNJA_SERVICE_ENABLETOTP": {
                      "description": "Whether Time-based one-time password (TOTP) is enabled.",
                      "defaultValue": "true"
                    },
                    "VIKUNJA_MAILER_SKIPTLSVERIFY": {
                      "description": "Whether to skip verification of the tls certificate on the server",
                      "defaultValue": "false"
                    },
                    "VIKUNJA_SERVICE_ENABLECALDAV": {
                      "description": "Enable the caldav endpoint",
                      "defaultValue": "true"
                    },
                    "VIKUNJA_SERVICE_CUSTOMLOGOURL": {
                      "description": "Allow using a custom logo via external URL.",
                      "defaultValue": "https://s3-eu-west-1.amazonaws.com/tpd/logos/4ab0af560000640005005a5a/0x0.png"
                    },
                    "VIKUNJA_SERVICE_MAXITEMSPERPAGE": {
                      "description": "The max number of items which can be returned per page",
                      "defaultValue": "50"
                    },
                    "VIKUNJA_SERVICE_CUSTOMLOGOURLDARK": {
                      "description": "Allow using a custom logo for dark mode via external URL. If not set, the regular logo will be used for both light and dark modes.",
                      "defaultValue": "https://s3-eu-west-1.amazonaws.com/tpd/logos/4ab0af560000640005005a5a/0x0.png"
                    },
                    "VIKUNJA_SERVICE_ENABLELINKSHARING": {
                      "description": "Enable sharing of project via a link",
                      "defaultValue": "true"
                    },
                    "VIKUNJA_SERVICE_ENABLEPUBLICTEAMS": {
                      "description": "Enables the public team feature. If enabled, it is possible to configure teams to be public, which makes them discoverable when sharing a project, therefore not only showing teams the user is member of.",
                      "defaultValue": "false"
                    },
                    "VIKUNJA_SERVICE_ENABLEREGISTRATION": {
                      "description": "Whether to let new users registering themselves or not",
                      "defaultValue": "true"
                    },
                    "VIKUNJA_SERVICE_ENABLETASKCOMMENTS": {
                      "description": "Whether task comments should be enabled or not",
                      "defaultValue": "true"
                    },
                    "VIKUNJA_SERVICE_ENABLEUSERDELETION": {
                      "description": "If true, will allow users to request the complete deletion of their account.",
                      "defaultValue": "true"
                    },
                    "VIKUNJA_SERVICE_ENABLEEMAILREMINDERS": {
                      "description": "If enabled, Vikunja will send an email to everyone who is either assigned to a task or created it when a task reminder is due.",
                      "defaultValue": "true"
                    },
                    "VIKUNJA_SERVICE_ENABLETASKATTACHMENTS": {
                      "description": "Whether to enable task attachments or not",
                      "defaultValue": "true"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>": {}
                    }
                  },
                  "volumeMounts": {
                    "f00f54e3-789c-4257-8201-8f502e84cd79": {
                      "mountPath": "/app/vikunja/files"
                    }
                  }
                },
                "f37436c4-ff95-4616-a98c-74b21972aba6": {
                  "icon": "https://cdn.sanity.io/images/sy1jschh/production/0ce0bfdcfbdbf69662b1116671f97c2dd788b655-157x157.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\""
                  },
                  "source": {
                    "image": "redis:8.2.1"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Connection string for connecting to redis using the private network",
                      "defaultValue": "redis://${{ REDISUSER }}:${{ REDIS_PASSWORD }}@${{ REDISHOST }}:${{ REDISPORT }}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    },
                    "REDIS_PUBLIC_URL": {
                      "description": "Connection string for connecting to redis externally",
                      "defaultValue": "redis://default:${{ REDIS_PASSWORD }}@${{ RAILWAY_TCP_PROXY_DOMAIN }}:${{ RAILWAY_TCP_PROXY_PORT }}"
                    }
                  },
                  "networking": {
                    "tcpProxies": {
                      "6379": {}
                    }
                  },
                  "volumeMounts": {
                    "f37436c4-ff95-4616-a98c-74b21972aba6": {
                      "mountPath": "/data"
                    }
                  },
                  "haTemplateCode": "redis-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxies",
                      "options": [
                        1,
                        2
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "HAProxy instances routing writes to the primary",
                      "defaultValue": 2
                    },
                    "replica": {
                      "label": "Redis Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "Redis",
                      "description": "Nodes running Redis + colocated Sentinel",
                      "defaultValue": 2
                    },
                    "internal": null,
                    "description": "This will convert your Redis instance to an HA cluster with Sentinel failover and HAProxy routing to the primary."
                  }
                },
                "fc072df4-e01a-41e6-abbc-7e304d6e8da1": {
                  "icon": "https://www.paradedb.com/favicon.ico",
                  "name": "ParadeDB",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "paradedb/paradedb:0.23.0-pg17"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "Location where the database will be initialized",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Railway TCP Proxy Domain",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Required variable for Data panel",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "Required variable for Data panel",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "Required variable for Data panel",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "Required variable for Data panel",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Default database created when image is started.",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "URL to connect to Postgres database",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "User to connect to Postgres DB",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "SSL certificate expiry in days.",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Password to connect to DB",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "fc072df4-e01a-41e6-abbc-7e304d6e8da1": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "Vikunja",
      "method": "GET",
      "path": "/health",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 3,
    "needs_volume": true
  },
  "generated_at": "2026-09-10T16:14:52.212Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-09T08:45:55.284Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_461759819b47440faac4",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 37,
    "typical_build_seconds": 0,
    "typical_start_seconds": 10,
    "slowest_service": "Vikunja"
  }
}
