{"id":29228395,"url":"https://github.com/restatedev/byoc","last_synced_at":"2025-08-20T17:24:45.344Z","repository":{"id":291781640,"uuid":"958630551","full_name":"restatedev/byoc","owner":"restatedev","description":"Deploy Restate in your cloud without managing servers","archived":false,"fork":false,"pushed_at":"2025-06-30T09:18:04.000Z","size":12825,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-30T09:19:23.132Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/restatedev.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}},"created_at":"2025-04-01T14:05:30.000Z","updated_at":"2025-06-30T09:18:10.000Z","dependencies_parsed_at":"2025-05-06T14:40:06.856Z","dependency_job_id":"f0263e95-d2fe-407e-b451-f1f557574d1a","html_url":"https://github.com/restatedev/byoc","commit_stats":null,"previous_names":["restatedev/byoc"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/restatedev/byoc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restatedev%2Fbyoc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restatedev%2Fbyoc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restatedev%2Fbyoc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restatedev%2Fbyoc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/restatedev","download_url":"https://codeload.github.com/restatedev/byoc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restatedev%2Fbyoc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263305273,"owners_count":23445866,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2025-07-03T10:10:48.402Z","updated_at":"2025-08-20T17:24:45.324Z","avatar_url":"https://github.com/restatedev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Restate Bring-your-own-cloud CDK construct\n\nThis package contains a construct suitable for deploying Restate on ECS Fargate using the BYOC controller.\nThe controller is not open source and a license ID must be provided for it to function. Please contact\n[info@restate.dev](mailto:info@restate.dev) if you're interested in a license.\n\n## Example\n```shell\nnpm install @restatedev/byoc\n```\n\n```ts\ninterface RestateStackProps extends cdk.StackProps {\n}\n\nexport class RestateStack extends cdk.Stack {\n  constructor(scope: Construct, id: string, props?: RestateStackProps) {\n    super(scope, id, props);\n\n    const vpc = new cdk.aws_ec2.Vpc(this, \"vpc\", {\n      maxAzs: 3,\n    });\n\n    const cluster = new RestateEcsFargateCluster(this, \"restate-cluster\", {\n      licenseKey: \"this-was-provided-to-you-by-restate\",\n      vpc,\n      statefulNode: {\n        resources: {\n          cpu: 2048,\n          memoryLimitMiB: 4096,\n        },\n        ebsVolume: {\n          volumeType: cdk.aws_ec2.EbsDeviceVolumeType.GP3,\n          sizeInGiB: 200,\n        },\n      },\n      statelessNode: {\n        resources: {\n          cpu: 2048,\n          memoryLimitMiB: 4096,\n        },\n      },\n    });\n  }\n}\n```\n\n## Documentation\n- [Authentication](./docs/authentication.md)\n- [Service Deployer construct](./docs/deployer.md)\n- [Monitoring](./docs/monitoring.md)\n\n\n## Releasing\n1. Update the NPM version in package.json and ensure it propagates to package-lock.json\n2. Run `npm test`, confirming there are no other snapshot issues except the changed version, then `npm test -- -u` to\nupdate the snapshots.\n3. Push a tag eg `git tag v0.1.0 \u0026\u0026 git push origin v0.1.0`\n4. Create a release from the tag\n5. GHA will publish the NPM package and the S3 assets once the release exists\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestatedev%2Fbyoc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frestatedev%2Fbyoc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestatedev%2Fbyoc/lists"}