{"id":41109526,"url":"https://github.com/vircadia/vircadia-world","last_synced_at":"2026-01-22T15:38:08.904Z","repository":{"id":332274267,"uuid":"885099130","full_name":"vircadia/vircadia-world","owner":"vircadia","description":"Vircadia World - fast reactivity layer for games.","archived":false,"fork":false,"pushed_at":"2026-01-21T11:48:00.000Z","size":5804,"stargazers_count":35,"open_issues_count":9,"forks_count":6,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-01-21T21:56:26.920Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vircadia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-08T00:32:18.000Z","updated_at":"2026-01-16T17:22:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/vircadia/vircadia-world","commit_stats":null,"previous_names":["vircadia/vircadia-world"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vircadia/vircadia-world","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vircadia%2Fvircadia-world","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vircadia%2Fvircadia-world/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vircadia%2Fvircadia-world/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vircadia%2Fvircadia-world/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vircadia","download_url":"https://codeload.github.com/vircadia/vircadia-world/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vircadia%2Fvircadia-world/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28665650,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T14:01:31.714Z","status":"ssl_error","status_checked_at":"2026-01-22T13:59:23.143Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-22T15:38:08.028Z","updated_at":"2026-01-22T15:38:08.899Z","avatar_url":"https://github.com/vircadia.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\n\n## Get started\n\n:::note\nThis is a work in progress and is not yet ready for production use until the version becomes 1.0.0 or higher unless you have direct support from the Vircadia team.\n:::\n\n### Clone the repository\n\nBe sure to clone recursively:\n\n```sh\ngit clone https://github.com/vircadia/vircadia-world.git --recursive\n```\nor if you've already cloned the repo:\n```sh\ngit submodule update --init --recursive\n```\n\nPull any assets with Git LFS:\n\n```sh\ngit lfs install\ngit lfs pull\n```\n\n### Deploy\n\nAfterward, use the [CLI](./cli/README.mdx) to install and deploy the project.\n\n## Architecture\n\n```mermaid\ngraph TB\n    subgraph K8s[\"Kubernetes (Optional)\"]\n        subgraph DockerCompose[\"Docker Compose\"]\n            subgraph APIContainer[\"API Container\"]\n                API[\"World API Manager\u003cbr/\u003e(WebSockets \u0026 REST)\"]\n            end\n            \n            subgraph StateContainer[\"State Container\"]\n                State[\"World State Manager\u003cbr/\u003e(Ticks \u0026 Entity Lifecycle)\"]\n            end\n            \n            subgraph PGWebContainer[\"PGWeb Container\"]\n                PGWeb[\"PGWeb\u003cbr/\u003e(Admin Interface)\"]\n            end\n            \n            subgraph DBContainer[\"Database Container\"]\n                Postgres[(\"Postgres Database\u003cbr/\u003e(All State \u0026 Auth)\")]\n            end\n            \n            API --\u003e Postgres\n            State --\u003e Postgres\n            PGWeb --\u003e Postgres\n        end\n    end\n    \n    CLI[\"CLI Tooling\u003cbr/\u003e(Configure \u0026 Deploy)\"]\n    Client[\"Client\u003cbr/\u003e(No Container)\"]\n    \n    CLI -.-\u003e|Deploy \u0026 Configure| DockerCompose\n    CLI -.-\u003e|Configure \u0026 Deploy| Client\n    Client --\u003e|WebSocket/REST| API\n    \n    classDef database fill:#e1f5fe\n    classDef service fill:#f3e5f5\n    classDef external fill:#fff3e0\n    classDef container fill:#e8f5e8\n    classDef containerGroup fill:#f0f8f0\n    \n    class Postgres database\n    class API,State,PGWeb service\n    class CLI,Client external\n    class APIContainer,StateContainer,PGWebContainer,DBContainer container\n    class DockerCompose,K8s containerGroup\n```\n\nSee the main [website](https://vircadia.com) for an alternate overview of the features available.\n\n## Next\n\nThe `next` branch is where new updates are merged before being pushed to `master`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvircadia%2Fvircadia-world","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvircadia%2Fvircadia-world","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvircadia%2Fvircadia-world/lists"}