{
  "manifest_version": "1.0.0",
  "template": {
    "id": "e81cadaf-c397-4908-9026-74e0541f51df",
    "slug": "flowiseai-with-workers",
    "name": "FlowiseAI with Workers",
    "description": "Flowise AI with Workers - persisted volume, PostGIS & private networking.",
    "url": "https://railway.com/deploy/flowiseai-with-workers",
    "upstream": {
      "repo_url": "https://github.com/protemplate/flowiseai-railway"
    }
  },
  "services": [
    {
      "name": "Flowise",
      "source": {
        "repo": "https://github.com/protemplate/flowiseai-railway"
      },
      "needs_volume": true,
      "volume_mount_path": "/opt/flowise/.flowise",
      "http": true
    },
    {
      "name": "Postgis",
      "source": {
        "image": "postgis/postgis:16-3.5"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "tcp_ports": [
        5432
      ],
      "http": false
    },
    {
      "name": "FlowiseWorker",
      "source": {
        "repo": "https://github.com/protemplate/flowiseai-railway"
      },
      "needs_volume": true,
      "volume_mount_path": "/opt/flowise/.flowise",
      "http": false
    },
    {
      "name": "Redis",
      "source": {
        "image": "bitnamilegacy/redis:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/bitnami",
      "tcp_ports": [
        6379
      ],
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "MODE",
      "service": "Flowise",
      "description": "Provide a value for MODE.",
      "secret": false,
      "strategy": "default",
      "default": "queue"
    },
    {
      "key": "LOG_PATH",
      "service": "Flowise",
      "description": "Location where log files are stored",
      "secret": false,
      "strategy": "default",
      "default": "/opt/flowise/.flowise/logs"
    },
    {
      "key": "REDIS_URL",
      "service": "Flowise",
      "description": "Provide a value for REDIS_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "QUEUE_NAME",
      "service": "Flowise",
      "description": "Provide a value for QUEUE_NAME.",
      "secret": false,
      "strategy": "default",
      "default": "flowise-queue"
    },
    {
      "key": "APIKEY_PATH",
      "service": "Flowise",
      "description": "Location where API keys are saved",
      "secret": true,
      "strategy": "default",
      "default": "/opt/flowise/.flowise"
    },
    {
      "key": "STORAGE_TYPE",
      "service": "Flowise",
      "description": "Type of storage for uploaded files. default is local",
      "secret": false,
      "strategy": "default",
      "default": "local"
    },
    {
      "key": "DATABASE_HOST",
      "service": "Flowise",
      "description": "Private or Public Host URL - i.e. postgis.railway.internal",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_NAME",
      "service": "Flowise",
      "description": "Database name (When DATABASE_TYPE is not sqlite)",
      "secret": false,
      "strategy": "default",
      "default": "flowise"
    },
    {
      "key": "DATABASE_PATH",
      "service": "Flowise",
      "description": "Location where database is saved (When DATABASE_TYPE is sqlite)",
      "secret": false,
      "strategy": "default",
      "default": "/opt/flowise/.flowise"
    },
    {
      "key": "DATABASE_PORT",
      "service": "Flowise",
      "description": "Private or Public database port (When DATABASE_TYPE is not sqlite) - i.e. 5432",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_TYPE",
      "service": "Flowise",
      "description": "Type of database to store the flowise data - i.e. sqlite, mysql, postgres",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "DATABASE_USER",
      "service": "Flowise",
      "description": "Database username (When DATABASE_TYPE is not sqlite) - i.e. postgres",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SECRETKEY_PATH",
      "service": "Flowise",
      "description": "Location where encryption key (used to encrypt/decrypt credentials) is saved",
      "secret": true,
      "strategy": "default",
      "default": "/opt/flowise/.flowise"
    },
    {
      "key": "FLOWISE_PASSWORD",
      "service": "Flowise",
      "description": "Password to login",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "FLOWISE_USERNAME",
      "service": "Flowise",
      "description": "Username to login",
      "secret": false,
      "strategy": "default",
      "default": "flowise"
    },
    {
      "key": "BLOB_STORAGE_PATH",
      "service": "Flowise",
      "description": "Location where uploaded files are saved when STORAGE_TYPE is local",
      "secret": false,
      "strategy": "default",
      "default": "/opt/flowise/.flowise/storage"
    },
    {
      "key": "DATABASE_PASSWORD",
      "service": "Flowise",
      "description": "Database password (When DATABASE_TYPE is not sqlite)",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "OVERRIDE_DATABASE",
      "service": "Flowise",
      "description": "Database Synchronization on every application launch.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "ENABLE_BULLMQ_DASHBOARD",
      "service": "Flowise",
      "description": "Provide a value for ENABLE_BULLMQ_DASHBOARD.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "FLOWISE_SECRETKEY_OVERWRITE",
      "service": "Flowise",
      "description": "Provide a value for FLOWISE_SECRETKEY_OVERWRITE.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "ENABLE_ALPINE_PRIVATE_NETWORKING",
      "service": "Flowise",
      "description": "A workaround for alpine private networking",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "PGDATA",
      "service": "Postgis",
      "description": "Location where the database will be initialized",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgis",
      "description": "Railway private domain",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgis",
      "description": "Port on which to listen for connections",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgis",
      "description": "Provide a value for POSTGRES_DB.",
      "secret": false,
      "strategy": "default",
      "default": "n8n"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgis",
      "description": "URL to connect to Postgres database over public networking",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgis",
      "description": "Provide a value for POSTGRES_USER.",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgis",
      "description": "Provide a value for POSTGRES_PASSWORD.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_PRIVATE_URL",
      "service": "Postgis",
      "description": "URL to connect to Postgres database over private network",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_INITDB_ARGS",
      "service": "Postgis",
      "description": "Additional arguments to pass to postgresql initdb, enables SSL",
      "secret": false,
      "strategy": "default",
      "default": "-c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key"
    },
    {
      "key": "MODE",
      "service": "FlowiseWorker",
      "description": "Provide a value for MODE.",
      "secret": false,
      "strategy": "default",
      "default": "worker"
    },
    {
      "key": "LOG_PATH",
      "service": "FlowiseWorker",
      "description": "Location where log files are stored",
      "secret": false,
      "strategy": "default",
      "default": "/opt/flowise/.flowise/logs"
    },
    {
      "key": "REDIS_URL",
      "service": "FlowiseWorker",
      "description": "Provide a value for REDIS_URL.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "QUEUE_NAME",
      "service": "FlowiseWorker",
      "description": "Provide a value for QUEUE_NAME.",
      "secret": false,
      "strategy": "default",
      "default": "flowise-queue"
    },
    {
      "key": "APIKEY_PATH",
      "service": "FlowiseWorker",
      "description": "Location where API keys are saved",
      "secret": true,
      "strategy": "default",
      "default": "/opt/flowise/.flowise"
    },
    {
      "key": "STORAGE_TYPE",
      "service": "FlowiseWorker",
      "description": "Type of storage for uploaded files. default is local",
      "secret": false,
      "strategy": "default",
      "default": "local"
    },
    {
      "key": "DATABASE_HOST",
      "service": "FlowiseWorker",
      "description": "Private or Public Host URL - i.e. postgis.railway.internal",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_NAME",
      "service": "FlowiseWorker",
      "description": "Database name (When DATABASE_TYPE is not sqlite)",
      "secret": false,
      "strategy": "default",
      "default": "flowise"
    },
    {
      "key": "DATABASE_PATH",
      "service": "FlowiseWorker",
      "description": "Location where database is saved (When DATABASE_TYPE is sqlite)",
      "secret": false,
      "strategy": "default",
      "default": "/opt/flowise/.flowise"
    },
    {
      "key": "DATABASE_PORT",
      "service": "FlowiseWorker",
      "description": "Private or Public database port (When DATABASE_TYPE is not sqlite) - i.e. 5432",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DATABASE_TYPE",
      "service": "FlowiseWorker",
      "description": "Type of database to store the flowise data - i.e. sqlite, mysql, postgres",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "DATABASE_USER",
      "service": "FlowiseWorker",
      "description": "Database username (When DATABASE_TYPE is not sqlite) - i.e. postgres",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "SECRETKEY_PATH",
      "service": "FlowiseWorker",
      "description": "Location where encryption key (used to encrypt/decrypt credentials) is saved",
      "secret": true,
      "strategy": "default",
      "default": "/opt/flowise/.flowise"
    },
    {
      "key": "FLOWISE_PASSWORD",
      "service": "FlowiseWorker",
      "description": "Password to login",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "FLOWISE_USERNAME",
      "service": "FlowiseWorker",
      "description": "Username to login",
      "secret": false,
      "strategy": "default",
      "default": "flowise"
    },
    {
      "key": "BLOB_STORAGE_PATH",
      "service": "FlowiseWorker",
      "description": "Location where uploaded files are saved when STORAGE_TYPE is local",
      "secret": false,
      "strategy": "default",
      "default": "/opt/flowise/.flowise/storage"
    },
    {
      "key": "DATABASE_PASSWORD",
      "service": "FlowiseWorker",
      "description": "Database password (When DATABASE_TYPE is not sqlite)",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "OVERRIDE_DATABASE",
      "service": "FlowiseWorker",
      "description": "Database Synchronization on every application launch.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "ENABLE_BULLMQ_DASHBOARD",
      "service": "FlowiseWorker",
      "description": "Provide a value for ENABLE_BULLMQ_DASHBOARD.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "FLOWISE_SECRETKEY_OVERWRITE",
      "service": "FlowiseWorker",
      "description": "Provide a value for FLOWISE_SECRETKEY_OVERWRITE.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ENABLE_ALPINE_PRIVATE_NETWORKING",
      "service": "FlowiseWorker",
      "description": "A workaround for alpine private networking",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Railway Private Domain Name.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Port to connect to Redis.",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Default user to connect to Redis.",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "URL to connect to Redis over the private network.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Password to connect to Redis.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "RAILWAY_RUN_UID",
      "service": "Redis",
      "description": "Start Redis process as root to allow for writing to the volume",
      "secret": false,
      "strategy": "default",
      "default": "0"
    },
    {
      "key": "REDIS_PUBLIC_URL",
      "service": "Redis",
      "description": "Public URL to connect to Redis, needed for the Data panel.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_RDB_POLICY",
      "service": "Redis",
      "description": "Set a RDB snapshot policy.",
      "secret": false,
      "strategy": "default",
      "default": "3600#1 300#100 60#10000"
    },
    {
      "key": "REDIS_AOF_ENABLED",
      "service": "Redis",
      "description": "Disable writing to AOF file.",
      "secret": false,
      "strategy": "default",
      "default": "no"
    },
    {
      "key": "RAILWAY_RUN_AS_ROOT",
      "service": "Redis",
      "description": "Start Redis process as root to allow for writing to the volume",
      "secret": false,
      "strategy": "default",
      "default": "true"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "flowiseai-with-workers"
      }
    },
    "cli": "railway deploy --template flowiseai-with-workers",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "e81cadaf-c397-4908-9026-74e0541f51df",
            "serializedConfig": {
              "services": {
                "2e859fe0-3a43-4ded-9bb4-4b0b82b0ef22": {
                  "icon": "https://somi-public-assets.s3.ap-southeast-1.amazonaws.com/railway/flowiseai-logo-2.png",
                  "name": "Flowise",
                  "source": {
                    "repo": "protemplate/flowiseai-railway",
                    "branch": null,
                    "rootDirectory": null
                  },
                  "variables": {
                    "MODE": {
                      "defaultValue": "queue"
                    },
                    "LOG_PATH": {
                      "description": "Location where log files are stored",
                      "defaultValue": "/opt/flowise/.flowise/logs"
                    },
                    "REDIS_URL": {
                      "defaultValue": "${{Redis.REDIS_URL}}?family=0 "
                    },
                    "QUEUE_NAME": {
                      "defaultValue": "flowise-queue"
                    },
                    "APIKEY_PATH": {
                      "description": "Location where API keys are saved",
                      "defaultValue": "/opt/flowise/.flowise"
                    },
                    "STORAGE_TYPE": {
                      "description": "Type of storage for uploaded files. default is local",
                      "defaultValue": "local"
                    },
                    "DATABASE_HOST": {
                      "description": "Private or Public Host URL - i.e. postgis.railway.internal",
                      "defaultValue": "${{Postgis.PGHOST}}"
                    },
                    "DATABASE_NAME": {
                      "description": "Database name (When DATABASE_TYPE is not sqlite)",
                      "defaultValue": "flowise"
                    },
                    "DATABASE_PATH": {
                      "description": "Location where database is saved (When DATABASE_TYPE is sqlite)",
                      "defaultValue": "/opt/flowise/.flowise"
                    },
                    "DATABASE_PORT": {
                      "description": "Private or Public database port (When DATABASE_TYPE is not sqlite) - i.e. 5432",
                      "defaultValue": "${{Postgis.PGPORT}}"
                    },
                    "DATABASE_TYPE": {
                      "description": "Type of database to store the flowise data - i.e. sqlite, mysql, postgres",
                      "defaultValue": "postgres"
                    },
                    "DATABASE_USER": {
                      "description": "Database username (When DATABASE_TYPE is not sqlite) - i.e. postgres",
                      "defaultValue": "${{Postgis.POSTGRES_USER}}"
                    },
                    "SECRETKEY_PATH": {
                      "description": "Location where encryption key (used to encrypt/decrypt credentials) is saved",
                      "defaultValue": "/opt/flowise/.flowise"
                    },
                    "FLOWISE_PASSWORD": {
                      "description": "Password to login",
                      "defaultValue": "{{FLOWISE_PASSWORD}}"
                    },
                    "FLOWISE_USERNAME": {
                      "description": "Username to login",
                      "defaultValue": "flowise"
                    },
                    "BLOB_STORAGE_PATH": {
                      "description": "Location where uploaded files are saved when STORAGE_TYPE is local",
                      "defaultValue": "/opt/flowise/.flowise/storage"
                    },
                    "DATABASE_PASSWORD": {
                      "description": "Database password (When DATABASE_TYPE is not sqlite)",
                      "defaultValue": "${{Postgis.POSTGRES_PASSWORD}}"
                    },
                    "OVERRIDE_DATABASE": {
                      "description": "Database Synchronization on every application launch.",
                      "defaultValue": "false"
                    },
                    "ENABLE_BULLMQ_DASHBOARD": {
                      "defaultValue": "true"
                    },
                    "FLOWISE_SECRETKEY_OVERWRITE": {
                      "defaultValue": "{{FLOWISE_SECRETKEY_OVERWRITE}}"
                    },
                    "ENABLE_ALPINE_PRIVATE_NETWORKING": {
                      "description": "A workaround for alpine private networking",
                      "defaultValue": "true"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>": {}
                    }
                  },
                  "volumeMounts": {
                    "2e859fe0-3a43-4ded-9bb4-4b0b82b0ef22": {
                      "mountPath": "/opt/flowise/.flowise"
                    }
                  }
                },
                "e174894f-1fab-4d8b-b645-dc9552eb2ce9": {
                  "icon": "https://somi-public-assets.s3.ap-southeast-1.amazonaws.com/railway/elephant.png",
                  "name": "Postgis",
                  "source": {
                    "image": "postgis/postgis:16-3.5"
                  },
                  "variables": {
                    "PGDATA": {
                      "description": "Location where the database will be initialized",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "description": "Railway private domain",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "description": "Port on which to listen for connections",
                      "defaultValue": "5432"
                    },
                    "POSTGRES_DB": {
                      "description": "",
                      "defaultValue": "n8n"
                    },
                    "DATABASE_URL": {
                      "description": "URL to connect to Postgres database over public networking",
                      "defaultValue": "postgres://${{POSTGRES_USER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{POSTGRES_DB}}"
                    },
                    "POSTGRES_USER": {
                      "defaultValue": "postgres"
                    },
                    "POSTGRES_PASSWORD": {
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_PRIVATE_URL": {
                      "description": "URL to connect to Postgres database over private network",
                      "defaultValue": "postgres://${{POSTGRES_USER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:${{PGPORT}}/${{POSTGRES_DB}}"
                    },
                    "POSTGRES_INITDB_ARGS": {
                      "description": "Additional arguments to pass to postgresql initdb, enables SSL",
                      "defaultValue": "-c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key"
                    }
                  },
                  "networking": {
                    "tcpProxies": {
                      "5432": {}
                    }
                  },
                  "volumeMounts": {
                    "e174894f-1fab-4d8b-b645-dc9552eb2ce9": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "e305b24c-bbcc-4e8e-b0ae-7f22c9e8ed64": {
                  "icon": "https://somi-public-assets.s3.ap-southeast-1.amazonaws.com/railway/flowiseai-logo-2.png",
                  "name": "FlowiseWorker",
                  "source": {
                    "repo": "protemplate/flowiseai-railway",
                    "branch": null,
                    "rootDirectory": null
                  },
                  "variables": {
                    "MODE": {
                      "defaultValue": "worker"
                    },
                    "LOG_PATH": {
                      "description": "Location where log files are stored",
                      "defaultValue": "/opt/flowise/.flowise/logs"
                    },
                    "REDIS_URL": {
                      "defaultValue": "${{Redis.REDIS_URL}}?family=0 "
                    },
                    "QUEUE_NAME": {
                      "defaultValue": "flowise-queue"
                    },
                    "APIKEY_PATH": {
                      "description": "Location where API keys are saved",
                      "defaultValue": "/opt/flowise/.flowise"
                    },
                    "STORAGE_TYPE": {
                      "description": "Type of storage for uploaded files. default is local",
                      "defaultValue": "local"
                    },
                    "DATABASE_HOST": {
                      "description": "Private or Public Host URL - i.e. postgis.railway.internal",
                      "defaultValue": "${{Postgis.PGHOST}}"
                    },
                    "DATABASE_NAME": {
                      "description": "Database name (When DATABASE_TYPE is not sqlite)",
                      "defaultValue": "flowise"
                    },
                    "DATABASE_PATH": {
                      "description": "Location where database is saved (When DATABASE_TYPE is sqlite)",
                      "defaultValue": "/opt/flowise/.flowise"
                    },
                    "DATABASE_PORT": {
                      "description": "Private or Public database port (When DATABASE_TYPE is not sqlite) - i.e. 5432",
                      "defaultValue": "${{Postgis.PGPORT}}"
                    },
                    "DATABASE_TYPE": {
                      "description": "Type of database to store the flowise data - i.e. sqlite, mysql, postgres",
                      "defaultValue": "postgres"
                    },
                    "DATABASE_USER": {
                      "description": "Database username (When DATABASE_TYPE is not sqlite) - i.e. postgres",
                      "defaultValue": "${{Postgis.POSTGRES_USER}}"
                    },
                    "SECRETKEY_PATH": {
                      "description": "Location where encryption key (used to encrypt/decrypt credentials) is saved",
                      "defaultValue": "/opt/flowise/.flowise"
                    },
                    "FLOWISE_PASSWORD": {
                      "description": "Password to login",
                      "defaultValue": "{{FLOWISE_PASSWORD}}"
                    },
                    "FLOWISE_USERNAME": {
                      "description": "Username to login",
                      "defaultValue": "flowise"
                    },
                    "BLOB_STORAGE_PATH": {
                      "description": "Location where uploaded files are saved when STORAGE_TYPE is local",
                      "defaultValue": "/opt/flowise/.flowise/storage"
                    },
                    "DATABASE_PASSWORD": {
                      "description": "Database password (When DATABASE_TYPE is not sqlite)",
                      "defaultValue": "${{Postgis.POSTGRES_PASSWORD}}"
                    },
                    "OVERRIDE_DATABASE": {
                      "description": "Database Synchronization on every application launch.",
                      "defaultValue": "false"
                    },
                    "ENABLE_BULLMQ_DASHBOARD": {
                      "defaultValue": "false"
                    },
                    "FLOWISE_SECRETKEY_OVERWRITE": {
                      "defaultValue": "${{Flowise.FLOWISE_SECRETKEY_OVERWRITE}}"
                    },
                    "ENABLE_ALPINE_PRIVATE_NETWORKING": {
                      "description": "A workaround for alpine private networking",
                      "defaultValue": "true"
                    }
                  },
                  "volumeMounts": {
                    "e305b24c-bbcc-4e8e-b0ae-7f22c9e8ed64": {
                      "mountPath": "/opt/flowise/.flowise"
                    }
                  }
                },
                "ed61f8c6-fe81-4efa-a33b-1e6a4eb5f268": {
                  "icon": "https://somi-public-assets.s3.ap-southeast-1.amazonaws.com/railway/Redis_Mark_Red_RGB.png",
                  "name": "Redis",
                  "source": {
                    "image": "bitnamilegacy/redis:latest"
                  },
                  "variables": {
                    "REDISHOST": {
                      "description": "Railway Private Domain Name.",
                      "defaultValue": "${{ RAILWAY_PRIVATE_DOMAIN }}"
                    },
                    "REDISPORT": {
                      "description": "Port to connect to Redis.",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "description": "Default user to connect to Redis.",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "description": "URL to connect to Redis over the private network.",
                      "defaultValue": "redis://${{ REDISUSER}}:${{ REDIS_PASSWORD }}@${{ RAILWAY_PRIVATE_DOMAIN }}:${{REDIS.REDISPORT}}"
                    },
                    "REDIS_PASSWORD": {
                      "description": "Password to connect to Redis.",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    },
                    "RAILWAY_RUN_UID": {
                      "description": "Start Redis process as root to allow for writing to the volume",
                      "defaultValue": "0"
                    },
                    "REDIS_PUBLIC_URL": {
                      "description": "Public URL to connect to Redis, needed for the Data panel.",
                      "defaultValue": "redis://default:${{ REDIS_PASSWORD }}@${{ RAILWAY_TCP_PROXY_DOMAIN }}:${{ RAILWAY_TCP_PROXY_PORT }}"
                    },
                    "REDIS_RDB_POLICY": {
                      "description": "Set a RDB snapshot policy.",
                      "defaultValue": "3600#1 300#100 60#10000"
                    },
                    "REDIS_AOF_ENABLED": {
                      "description": "Disable writing to AOF file.",
                      "defaultValue": "no"
                    },
                    "RAILWAY_RUN_AS_ROOT": {
                      "description": "Start Redis process as root to allow for writing to the volume",
                      "defaultValue": "true"
                    }
                  },
                  "networking": {
                    "tcpProxies": {
                      "6379": {}
                    }
                  },
                  "volumeMounts": {
                    "ed61f8c6-fe81-4efa-a33b-1e6a4eb5f268": {
                      "mountPath": "/bitnami"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {},
  "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-18T22:34:59.326Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_e709d48791d640acbd3d",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 284,
    "typical_build_seconds": 152,
    "typical_start_seconds": 41,
    "slowest_service": "FlowiseWorker"
  }
}
