{
  "manifest_version": "1.0.0",
  "template": {
    "id": "903b0dfa-55e2-45d4-8de9-8216fd8d2e11",
    "slug": "odysseus",
    "name": "Odysseus",
    "description": "odysseus from pewdiepie. Self-hosted AI workspace. odyseus",
    "url": "https://railway.com/deploy/odysseus",
    "upstream": {
      "image": "binwiederhier/ntfy"
    }
  },
  "status": "unvalidated",
  "validated_at": null,
  "success_rate_30d": null,
  "services": [
    {
      "name": "chroma",
      "source": {
        "image": "chromadb/chroma:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "ntfy",
      "source": {
        "image": "binwiederhier/ntfy"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/cache/ntfy",
      "http": true
    },
    {
      "name": "searxng",
      "source": {
        "repo": "https://github.com/XavTo/odysseus"
      },
      "needs_volume": true,
      "volume_mount_path": "/etc/searxng",
      "http": false
    },
    {
      "name": "odysseus",
      "source": {
        "repo": "https://github.com/XavTo/odysseus"
      },
      "needs_volume": true,
      "volume_mount_path": "/app/data",
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "ANONYMIZED_TELEMETRY",
      "service": "chroma",
      "description": "disable Chroma telemetry",
      "secret": false,
      "strategy": "default",
      "default": "FALSE"
    },
    {
      "key": "NTFY_BASE_URL",
      "service": "ntfy",
      "description": "internal ntfy URL used by Odysseus notifications",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "NTFY_BEHIND_PROXY",
      "service": "ntfy",
      "description": "only needed when ntfy is exposed publicly behind Railway HTTPS/reverse proxy",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "SEARXNG_SECRET",
      "service": "searxng",
      "description": "cryptographic secret key used by SearXNG",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "SEARXNG_BASE_URL",
      "service": "searxng",
      "description": "internal base URL used to generate links and API responses",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGID",
      "service": "odysseus",
      "description": "runtime group ID for non-root execution",
      "secret": false,
      "strategy": "default",
      "default": "1000"
    },
    {
      "key": "PUID",
      "service": "odysseus",
      "description": "runtime user ID for non-root execution",
      "secret": false,
      "strategy": "default",
      "default": "1000"
    },
    {
      "key": "LLM_HOST",
      "service": "odysseus",
      "description": "default local LLM host (kept for compatibility)",
      "secret": false,
      "strategy": "default",
      "default": "localhost"
    },
    {
      "key": "AUTH_ENABLED",
      "service": "odysseus",
      "description": "enable authentication",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "DATABASE_URL",
      "service": "odysseus",
      "description": "SQLite database stored in the persistent volume",
      "secret": false,
      "strategy": "default",
      "default": "sqlite:///./data/app.db"
    },
    {
      "key": "NODE_OPTIONS",
      "service": "odysseus",
      "description": "increase Node.js memory limit for MCP/Playwright",
      "secret": false,
      "strategy": "default",
      "default": "--max-old-space-size=4096"
    },
    {
      "key": "CHROMADB_HOST",
      "service": "odysseus",
      "description": "internal Chroma service hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "CHROMADB_PORT",
      "service": "odysseus",
      "description": "internal Chroma service port",
      "secret": false,
      "strategy": "default",
      "default": "8000"
    },
    {
      "key": "NTFY_BASE_URL",
      "service": "odysseus",
      "description": "internal ntfy notification service URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "SECURE_COOKIES",
      "service": "odysseus",
      "description": "force Secure cookies when using HTTPS",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "ALLOWED_ORIGINS",
      "service": "odysseus",
      "description": "allowed public frontend origin",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "FASTEMBED_MODEL",
      "service": "odysseus",
      "description": "default local embedding model",
      "secret": false,
      "strategy": "default",
      "default": "sentence-transformers/all-MiniLM-L6-v2"
    },
    {
      "key": "LOCALHOST_BYPASS",
      "service": "odysseus",
      "description": "disable localhost auth bypass (recommended for public deployments)",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "SEARXNG_INSTANCE",
      "service": "odysseus",
      "description": "internal SearXNG instance URL",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "ODYSSEUS_ADMIN_USER",
      "service": "odysseus",
      "description": "initial admin username",
      "secret": false,
      "strategy": "default",
      "default": "admin"
    },
    {
      "key": "FASTEMBED_CACHE_PATH",
      "service": "odysseus",
      "description": "persistent FastEmbed model cache",
      "secret": false,
      "strategy": "default",
      "default": "/app/data/fastembed"
    },
    {
      "key": "ODYSSEUS_SCRIPT_HOST",
      "service": "odysseus",
      "description": "host used for internal scheduled scripts",
      "secret": false,
      "strategy": "default",
      "default": "localhost"
    },
    {
      "key": "CLEANUP_INTERVAL_HOURS",
      "service": "odysseus",
      "description": "background cleanup interval",
      "secret": false,
      "strategy": "default",
      "default": "24"
    },
    {
      "key": "ODYSSEUS_ADMIN_PASSWORD",
      "service": "odysseus",
      "description": "auto-generated admin password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "ODYSSEUS_INPROCESS_TASKS",
      "service": "odysseus",
      "description": "enable built-in task scheduler",
      "secret": false,
      "strategy": "default",
      "default": "1"
    },
    {
      "key": "PLAYWRIGHT_BROWSERS_PATH",
      "service": "odysseus",
      "description": "location of Playwright browser binaries",
      "secret": false,
      "strategy": "default",
      "default": "/ms-playwright"
    },
    {
      "key": "ODYSSEUS_INPROCESS_POLLERS",
      "service": "odysseus",
      "description": "enable built-in background pollers",
      "secret": false,
      "strategy": "default",
      "default": "1"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "odysseus"
      }
    },
    "cli": "railway deploy --template odysseus",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "903b0dfa-55e2-45d4-8de9-8216fd8d2e11",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "582ab23a-1aaa-4021-b708-be0665636007": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/webp/chroma.webp",
                  "name": "chroma",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "chromadb/chroma:latest"
                  },
                  "variables": {
                    "ANONYMIZED_TELEMETRY": {
                      "isOptional": false,
                      "description": "disable Chroma telemetry",
                      "defaultValue": "FALSE"
                    }
                  },
                  "volumeMounts": {
                    "582ab23a-1aaa-4021-b708-be0665636007": {
                      "mountPath": "/data"
                    }
                  }
                },
                "8eaf2343-7dae-457d-8399-71289b7d26b3": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/ntfy.png",
                  "name": "ntfy",
                  "deploy": {
                    "startCommand": "ntfy serve",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "binwiederhier/ntfy"
                  },
                  "variables": {
                    "NTFY_BASE_URL": {
                      "isOptional": false,
                      "description": "internal ntfy URL used by Odysseus notifications",
                      "defaultValue": "http://${{ntfy.RAILWAY_PRIVATE_DOMAIN}}:80"
                    },
                    "NTFY_BEHIND_PROXY": {
                      "description": "only needed when ntfy is exposed publicly behind Railway HTTPS/reverse proxy",
                      "defaultValue": "true"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:80": {
                        "port": 80
                      }
                    }
                  },
                  "volumeMounts": {
                    "8eaf2343-7dae-457d-8399-71289b7d26b3": {
                      "mountPath": "/var/cache/ntfy"
                    }
                  }
                },
                "9872078f-dea2-4665-9b81-0dfe6901f2f8": {
                  "icon": "https://docs.searxng.org/_static/searxng-wordmark.svg",
                  "name": "searxng",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/XavTo/odysseus",
                    "rootDirectory": "/railway/searxng"
                  },
                  "variables": {
                    "SEARXNG_SECRET": {
                      "isOptional": false,
                      "description": "cryptographic secret key used by SearXNG",
                      "defaultValue": "{{SEARXNG_SECRET}}"
                    },
                    "SEARXNG_BASE_URL": {
                      "isOptional": false,
                      "description": "internal base URL used to generate links and API responses",
                      "defaultValue": "http://${{searxng.RAILWAY_PRIVATE_DOMAIN}}:8080/"
                    }
                  },
                  "volumeMounts": {
                    "9872078f-dea2-4665-9b81-0dfe6901f2f8": {
                      "mountPath": "/etc/searxng"
                    }
                  }
                },
                "a17efa8d-f8fd-4052-8d89-b6e7253dfd5a": {
                  "icon": "https://bc.xavto.fr/xavto/odysseus-logo2.svg",
                  "name": "odysseus",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/XavTo/odysseus",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PGID": {
                      "isOptional": false,
                      "description": "runtime group ID for non-root execution",
                      "defaultValue": "1000"
                    },
                    "PUID": {
                      "isOptional": false,
                      "description": "runtime user ID for non-root execution",
                      "defaultValue": "1000"
                    },
                    "HF_TOKEN": {
                      "isOptional": true,
                      "description": "optional: alternative Hugging Face token",
                      "defaultValue": ""
                    },
                    "LLM_HOST": {
                      "isOptional": false,
                      "description": "default local LLM host (kept for compatibility)",
                      "defaultValue": "localhost"
                    },
                    "LLM_HOSTS": {
                      "isOptional": true,
                      "description": "optional: additional LLM hosts for model discovery",
                      "defaultValue": ""
                    },
                    "AUTH_ENABLED": {
                      "isOptional": false,
                      "description": "enable authentication",
                      "defaultValue": "true"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "SQLite database stored in the persistent volume",
                      "defaultValue": "sqlite:///./data/app.db"
                    },
                    "NODE_OPTIONS": {
                      "isOptional": false,
                      "description": "increase Node.js memory limit for MCP/Playwright",
                      "defaultValue": "--max-old-space-size=4096"
                    },
                    "CHROMADB_HOST": {
                      "isOptional": false,
                      "description": "internal Chroma service hostname",
                      "defaultValue": "${{chroma.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "CHROMADB_PORT": {
                      "isOptional": false,
                      "description": "internal Chroma service port",
                      "defaultValue": "8000"
                    },
                    "EMBEDDING_URL": {
                      "isOptional": true,
                      "description": "optional: OpenAI-compatible embeddings endpoint",
                      "defaultValue": ""
                    },
                    "GOOGLE_PSE_CX": {
                      "isOptional": true,
                      "description": "optional: Google Programmable Search Engine ID",
                      "defaultValue": ""
                    },
                    "NTFY_BASE_URL": {
                      "isOptional": false,
                      "description": "internal ntfy notification service URL",
                      "defaultValue": "http://${{ntfy.RAILWAY_PRIVATE_DOMAIN}}:80"
                    },
                    "GOOGLE_API_KEY": {
                      "isOptional": true,
                      "description": "optional: Google API key",
                      "defaultValue": ""
                    },
                    "OPENAI_API_KEY": {
                      "isOptional": true,
                      "description": "optional: OpenAI API key for cloud models",
                      "defaultValue": ""
                    },
                    "SECURE_COOKIES": {
                      "isOptional": false,
                      "description": "force Secure cookies when using HTTPS",
                      "defaultValue": "true"
                    },
                    "SERPER_API_KEY": {
                      "isOptional": true,
                      "description": "optional: Serper Search API key",
                      "defaultValue": ""
                    },
                    "TAVILY_API_KEY": {
                      "isOptional": true,
                      "description": "optional: Tavily Search API key",
                      "defaultValue": ""
                    },
                    "ALLOWED_ORIGINS": {
                      "isOptional": false,
                      "description": "allowed public frontend origin",
                      "defaultValue": "https://${{odysseus.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "EMBEDDING_MODEL": {
                      "isOptional": true,
                      "description": "optional: embedding model name when using EMBEDDING_URL",
                      "defaultValue": ""
                    },
                    "FASTEMBED_MODEL": {
                      "isOptional": false,
                      "description": "default local embedding model",
                      "defaultValue": "sentence-transformers/all-MiniLM-L6-v2"
                    },
                    "OLLAMA_BASE_URL": {
                      "isOptional": true,
                      "description": "optional: remote Ollama server URL (not localhost on Railway)",
                      "defaultValue": ""
                    },
                    "LOCALHOST_BYPASS": {
                      "isOptional": false,
                      "description": "disable localhost auth bypass (recommended for public deployments)",
                      "defaultValue": "false"
                    },
                    "SEARXNG_INSTANCE": {
                      "isOptional": false,
                      "description": "internal SearXNG instance URL",
                      "defaultValue": "http://${{searxng.RAILWAY_PRIVATE_DOMAIN}}:8080"
                    },
                    "DATA_BRAVE_API_KEY": {
                      "isOptional": true,
                      "description": "optional: Brave Search API key",
                      "defaultValue": ""
                    },
                    "ODYSSEUS_ADMIN_USER": {
                      "isOptional": false,
                      "description": "initial admin username",
                      "defaultValue": "admin"
                    },
                    "FASTEMBED_CACHE_PATH": {
                      "isOptional": false,
                      "description": "persistent FastEmbed model cache",
                      "defaultValue": "/app/data/fastembed"
                    },
                    "ODYSSEUS_SCRIPT_HOST": {
                      "isOptional": false,
                      "description": "host used for internal scheduled scripts",
                      "defaultValue": "localhost"
                    },
                    "RESEARCH_LLM_ENDPOINT": {
                      "isOptional": true,
                      "description": "optional: dedicated LLM endpoint used for Deep Research",
                      "defaultValue": ""
                    },
                    "CLEANUP_INTERVAL_HOURS": {
                      "isOptional": false,
                      "description": "background cleanup interval",
                      "defaultValue": "24"
                    },
                    "HUGGING_FACE_HUB_TOKEN": {
                      "isOptional": true,
                      "description": "optional: Hugging Face Hub access token",
                      "defaultValue": ""
                    },
                    "ODYSSEUS_ADMIN_PASSWORD": {
                      "isOptional": false,
                      "description": "auto-generated admin password",
                      "defaultValue": "{{ODYSSEUS_ADMIN_PASSWORD}}"
                    },
                    "ODYSSEUS_INPROCESS_TASKS": {
                      "isOptional": false,
                      "description": "enable built-in task scheduler",
                      "defaultValue": "1"
                    },
                    "PLAYWRIGHT_BROWSERS_PATH": {
                      "isOptional": false,
                      "description": "location of Playwright browser binaries",
                      "defaultValue": "/ms-playwright"
                    },
                    "ODYSSEUS_INPROCESS_POLLERS": {
                      "isOptional": false,
                      "description": "enable built-in background pollers",
                      "defaultValue": "1"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:7000": {
                        "port": 7000
                      }
                    }
                  },
                  "volumeMounts": {
                    "a17efa8d-f8fd-4052-8d89-b6e7253dfd5a": {
                      "mountPath": "/app/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {},
  "resources": {
    "expected_services": 4,
    "needs_volume": true
  },
  "generated_at": "2026-09-05T11:54:15.547Z",
  "generator_version": "0.1.0"
}
