{
  "manifest_version": "1.0.0",
  "template": {
    "id": "434ee0ff-ff49-4691-8e10-83b2b8c998f1",
    "slug": "everos",
    "name": "EverOS",
    "description": "EverOS agent memory server behind a bearer-token gateway, data on a volume",
    "url": "https://railway.com/deploy/everos",
    "upstream": {
      "repo_url": "https://github.com/RockinPaul/everos_railway_template"
    }
  },
  "services": [
    {
      "name": "everos",
      "source": {
        "repo": "https://github.com/RockinPaul/everos_railway_template"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "TZ",
      "service": "everos",
      "description": "Container time zone.",
      "secret": false,
      "strategy": "default",
      "default": "UTC"
    },
    {
      "key": "PORT",
      "service": "everos",
      "description": "Public port served by the Caddy gateway. Must match the service's domain port. EverOS itself stays on 8000 for the private network.",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "API_TOKEN",
      "service": "everos",
      "description": "Bearer token for the public URL. Send it as Authorization: Bearer  <token>. At least 24 characters from A-Z a-z 0-9 _ - or the container refuses to start.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "EVEROS_LOG_LEVEL",
      "service": "everos",
      "description": "Log level: DEBUG, INFO, WARNING or ERROR.",
      "secret": false,
      "strategy": "default",
      "default": "INFO"
    },
    {
      "key": "EVEROS_LLM__MODEL",
      "service": "everos",
      "description": "Chat model used for memory extraction, in the provider's naming.",
      "secret": false,
      "strategy": "default",
      "default": "openai/gpt-4.1-mini"
    },
    {
      "key": "EVEROS_LOG_FORMAT",
      "service": "everos",
      "description": "Log format, json or text.",
      "secret": false,
      "strategy": "default",
      "default": "json"
    },
    {
      "key": "EVEROS_LLM__API_KEY",
      "service": "everos",
      "description": "Key for the chat model that extracts memories, an OpenRouter key by default. Required: EverOS does not start without it.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "EVEROS_LLM__BASE_URL",
      "service": "everos",
      "description": "OpenAI-compatible endpoint for the chat model.",
      "secret": false,
      "strategy": "default",
      "default": "https://openrouter.ai/api/v1"
    },
    {
      "key": "EVEROS_MULTIMODAL__MODEL",
      "service": "everos",
      "description": "Vision model for images, PDFs and audio. Must accept OpenAI image_url parts.",
      "secret": false,
      "strategy": "default",
      "default": "google/gemini-3.8-flash"
    },
    {
      "key": "EVEROS_MULTIMODAL__API_KEY",
      "service": "everos",
      "description": "Key for the vision model. Defaults to the same key as the chat model.",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "EVEROS_MULTIMODAL__BASE_URL",
      "service": "everos",
      "description": "OpenAI-compatible endpoint for the vision model.",
      "secret": false,
      "strategy": "default",
      "default": "https://openrouter.ai/api/v1"
    },
    {
      "key": "EVEROS_MULTIMODAL__FILE_URI_ALLOW_DIRS",
      "service": "everos",
      "description": "JSON list of directories that file:// content items may read. Keep it inside the volume; the API is reachable from outside.",
      "secret": false,
      "strategy": "default",
      "default": "[\"/data/uploads\"]"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "everos"
      }
    },
    "cli": "railway deploy --template everos",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "434ee0ff-ff49-4691-8e10-83b2b8c998f1",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "8794abb9-894b-41d4-928d-6f545df0abca": {
                  "icon": null,
                  "name": "everos",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/health",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/RockinPaul/everos_railway_template",
                    "rootDirectory": null
                  },
                  "variables": {
                    "TZ": {
                      "isOptional": false,
                      "description": "Container time zone.",
                      "defaultValue": "UTC"
                    },
                    "PORT": {
                      "isOptional": false,
                      "description": "Public port served by the Caddy gateway. Must match the service's domain port. EverOS itself stays on 8000 for the private network.",
                      "defaultValue": "8080"
                    },
                    "API_TOKEN": {
                      "isOptional": false,
                      "description": "Bearer token for the public URL. Send it as Authorization: Bearer  <token>. At least 24 characters from A-Z a-z 0-9 _ - or the container refuses to start.",
                      "defaultValue": "{{API_TOKEN}}"
                    },
                    "EVEROS_LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Log level: DEBUG, INFO, WARNING or ERROR.",
                      "defaultValue": "INFO"
                    },
                    "EVEROS_LLM__MODEL": {
                      "isOptional": false,
                      "description": "Chat model used for memory extraction, in the provider's naming.",
                      "defaultValue": "openai/gpt-4.1-mini"
                    },
                    "EVEROS_LOG_FORMAT": {
                      "isOptional": false,
                      "description": "Log format, json or text.",
                      "defaultValue": "json"
                    },
                    "EVEROS_LLM__API_KEY": {
                      "isOptional": false,
                      "description": "Key for the chat model that extracts memories, an OpenRouter key by default. Required: EverOS does not start without it.",
                      "defaultValue": "{{EVEROS_LLM__API_KEY}}"
                    },
                    "EVEROS_LLM__BASE_URL": {
                      "isOptional": false,
                      "description": "OpenAI-compatible endpoint for the chat model.",
                      "defaultValue": "https://openrouter.ai/api/v1"
                    },
                    "EVEROS_RERANK__MODEL": {
                      "isOptional": true,
                      "description": "Optional rerank model for search results.",
                      "defaultValue": ""
                    },
                    "EVEROS_RERANK__API_KEY": {
                      "isOptional": true,
                      "description": "Optional key for the rerank endpoint.",
                      "defaultValue": ""
                    },
                    "EVEROS_EMBEDDING__MODEL": {
                      "isOptional": true,
                      "description": "Optional embedding model. Enables vector and hybrid search, reflection and skills. Without it use \"method\": \"keyword\".",
                      "defaultValue": ""
                    },
                    "EVEROS_RERANK__BASE_URL": {
                      "isOptional": true,
                      "description": "Optional OpenAI-compatible /rerank endpoint.",
                      "defaultValue": ""
                    },
                    "EVEROS_MULTIMODAL__MODEL": {
                      "isOptional": false,
                      "description": "Vision model for images, PDFs and audio. Must accept OpenAI image_url parts.",
                      "defaultValue": "google/gemini-3.8-flash"
                    },
                    "EVEROS_EMBEDDING__API_KEY": {
                      "isOptional": true,
                      "description": "Optional key for the embedding endpoint.",
                      "defaultValue": ""
                    },
                    "EVEROS_EMBEDDING__BASE_URL": {
                      "isOptional": true,
                      "description": "Optional OpenAI-compatible /embeddings endpoint.",
                      "defaultValue": ""
                    },
                    "EVEROS_MULTIMODAL__API_KEY": {
                      "isOptional": false,
                      "description": "Key for the vision model. Defaults to the same key as the chat model.",
                      "defaultValue": "${{EVEROS_LLM__API_KEY}}"
                    },
                    "EVEROS_MULTIMODAL__BASE_URL": {
                      "isOptional": false,
                      "description": "OpenAI-compatible endpoint for the vision model.",
                      "defaultValue": "https://openrouter.ai/api/v1"
                    },
                    "EVEROS_MULTIMODAL__FILE_URI_ALLOW_DIRS": {
                      "isOptional": false,
                      "description": "JSON list of directories that file:// content items may read. Keep it inside the volume; the API is reachable from outside.",
                      "defaultValue": "[\"/data/uploads\"]"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8080": {
                        "port": 8080
                      }
                    }
                  },
                  "volumeMounts": {
                    "8794abb9-894b-41d4-928d-6f545df0abca": {
                      "mountPath": "/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "everos",
      "method": "GET",
      "path": "/health",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 1,
    "needs_volume": true
  },
  "generated_at": "2026-09-08T21:59:40.747Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-08T22:05:12.476Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_f56141c1ecc04eadaa8c",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 263,
    "typical_build_seconds": 133,
    "typical_start_seconds": 20,
    "slowest_service": "everos"
  }
}
