{"id":51136171,"url":"https://github.com/contember/vozka","last_synced_at":"2026-06-25T18:01:46.578Z","repository":{"id":366839985,"uuid":"1278055301","full_name":"contember/vozka","owner":"contember","description":"Deploy control plane for a Cloudflare Workers ecosystem (oblaka + propustka)","archived":false,"fork":false,"pushed_at":"2026-06-23T13:31:47.000Z","size":261,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-23T15:19:50.654Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/contember.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2026-06-23T12:24:41.000Z","updated_at":"2026-06-23T13:32:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/contember/vozka","commit_stats":null,"previous_names":["contember/vozka"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/contember/vozka","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contember%2Fvozka","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contember%2Fvozka/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contember%2Fvozka/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contember%2Fvozka/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/contember","download_url":"https://codeload.github.com/contember/vozka/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contember%2Fvozka/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34786238,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-06-25T18:01:45.377Z","updated_at":"2026-06-25T18:01:46.571Z","avatar_url":"https://github.com/contember.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vozka\n\nA deploy control plane for a Cloudflare Workers ecosystem.\n\n`vozka` lets each app declare its full deploy surface — Cloudflare resources (via\n[`oblaka-iac`](https://github.com/contember/oblaka)), the\n[propustka](https://github.com/contember/propustka) Access edge / authz schema, and a build\npipeline — from a single config file, then drives provisioning + deployment from one place\n(CLI today, a control-plane Worker + dashboard later).\n\n\u003e **Status: M0 — skeleton + public contracts.** The packages compile and expose their public\n\u003e APIs, but the deploy engine, control-plane worker, dashboard UI, and CI runner are stubs to\n\u003e be filled in by later milestones (M1–M3). See each package below for what lands when.\n\n## Packages\n\n| Package              | Name               | What it is                                                                                                                                                                                          |\n| -------------------- | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `packages/config`    | `vozka-config`     | The app-authoring surface. `defineApp()` plus re-exported `oblaka-iac` resource primitives and propustka `AppAccess`/`AppSchema` types, so an app authors its whole deploy surface from one import. |\n| `packages/core`      | `@vozka/core`      | Deploy engine types + `deploy()` and the `vozka` CLI. M0 ships the contracts and CLI plumbing; the real engine is M1.                                                                               |\n| `packages/worker`    | `@vozka/worker`    | The control-plane Worker (`WorkerEntrypoint`). Skeleton only; built in M3.                                                                                                                          |\n| `packages/dashboard` | `@vozka/dashboard` | A [buzola](https://github.com/contember/buzola) + React SPA for the control plane. Skeleton only; built in M3.                                                                                      |\n| `packages/runner`    | `@vozka/runner`    | The CI/container deploy runner. Placeholder only; Dockerfile + entrypoint arrive in M2.                                                                                                             |\n\n## Authoring an app\n\n```ts\nimport { defineApp, Worker } from 'vozka-config'\n\nexport default defineApp({\n\tid: 'my-app',\n\tresources: ({ env }) =\u003e\n\t\tnew Worker({\n\t\t\tdir: '.',\n\t\t\tname: 'my-app',\n\t\t\tmain: './src/index.ts',\n\t\t\tcompatibility_flags: ['nodejs_compat_v2'],\n\t\t\tcompatibility_date: '2025-10-01',\n\t\t\tbindings: {},\n\t\t}),\n\tpipeline: {\n\t\tworkerDir: '.',\n\t\tbuild: 'bun run build',\n\t\tsecrets: ['API_TOKEN'],\n\t},\n})\n```\n\n```sh\nvozka deploy --env=production --config=./vozka.config.ts\n```\n\n## Development\n\n```sh\nbun install\nbun run typecheck\n```\n\nConventions (module type, TypeScript settings, scripts, biome/dprint) mirror the\n[propustka](https://github.com/contember/propustka) monorepo.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontember%2Fvozka","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcontember%2Fvozka","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontember%2Fvozka/lists"}