{"id":50721206,"url":"https://github.com/codeforester/banyanlabs","last_synced_at":"2026-06-10T00:01:35.765Z","repository":{"id":350801589,"uuid":"1205616760","full_name":"codeforester/banyanlabs","owner":"codeforester","description":"A hands-on platform engineering and SRE lab for building real services, CI/CD, observability, Kubernetes, infrastructure as code, and multi-cloud operations from a local-first foundation.","archived":false,"fork":false,"pushed_at":"2026-06-05T14:40:26.000Z","size":120,"stargazers_count":1,"open_issues_count":12,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-05T16:08:31.209Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/codeforester.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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-04-09T06:00:21.000Z","updated_at":"2026-06-05T14:11:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/codeforester/banyanlabs","commit_stats":null,"previous_names":["codeforester/banyanlabs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codeforester/banyanlabs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbanyanlabs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbanyanlabs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbanyanlabs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbanyanlabs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeforester","download_url":"https://codeload.github.com/codeforester/banyanlabs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbanyanlabs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34130642,"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-09T02:00:06.510Z","response_time":63,"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-10T00:01:34.819Z","updated_at":"2026-06-10T00:01:35.758Z","avatar_url":"https://github.com/codeforester.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Banyan Labs\n\nBanyan Labs is a realistic infrastructure and platform engineering lab.\n\nThe purpose is to build deep DevOps, SRE, and platform engineering knowledge by\nassembling real services and infrastructure tools into a meaningful environment.\nCertifications can introduce AWS, GCP, Azure, Kubernetes, Terraform, CI/CD,\nmonitoring, and distributed systems, but Banyan Labs is about learning those\ningredients by building with them.\n\nThe long-term goal is to grow toward the complexity of a medium-sized\nengineering organization: multiple services, multiple languages, local and\nremote environments, CI/CD, infrastructure as code, observability, Kubernetes,\nand eventually multi-cloud patterns based on real open source tools.\n\nThe first concrete service is a Go URL shortener with local SQLite storage,\nauthentication, user management, tests, and a minimal HTML UI from day one.\n\nSee [Banyan Labs Vision](docs/banyanlabs-vision.md) for the broader direction.\nSee [Platform Roadmap](docs/platform-roadmap.md) for the phased path from the\nlocal service to observability, delivery, Kubernetes, infrastructure as code,\nand cloud environments.\n\n## Local Setup\n\nBanyan Labs uses Base for workspace orchestration and `mise` for language\nruntime versions.\n\nFrom the repository root:\n\n```bash\nbasectl setup banyanlabs\n```\n\nThat setup path uses:\n\n- `Brewfile` to install `mise` and API test tooling\n- `.mise.toml` to install the Go runtime\n- `base_manifest.yaml` to connect those tools to Base\n\nAfter setup:\n\n```bash\nbasectl test banyanlabs\nbasectl run banyanlabs api-test\nbasectl run banyanlabs build\nbasectl run banyanlabs dev\n```\n\nAPI contracts and black-box smoke tests live with the repo:\n\n- `services/url-shortener/openapi.yaml`\n- `tests/api/url-shortener/*.hurl`\n\n## Relationship to Base\n\nThe shared developer bootstrap layer no longer lives here.\n\nThat foundational layer now belongs in\n[`base`](https://github.com/codeforester/base#readme), including:\n\n- shell environment bootstrap\n- shared Bash wrapper and command conventions\n- common shell libraries\n- workspace-level setup and test entrypoints\n\nThe intended local workspace shape is:\n\n```text\nwork/\n  base/\n  banyanlabs/\n  other-project/\n```\n\nIn that model:\n\n- `base` owns shared developer tooling and workspace orchestration\n- `banyanlabs` owns Banyan Labs-specific code, manifests, infrastructure, and\n  project behavior\n\n## What This Repo Will Focus On\n\nBanyan Labs focuses on project-level and product-level concerns such as:\n\n- project source code\n- infrastructure definitions\n- service code\n- manifests and configuration specific to Banyan Labs\n- project-specific documentation\n- project-specific tests and automation\n\n## Status\n\nThis repo is being rebuilt around a local-first platform lab.\n\nThe shared CLI/bootstrap artifacts moved into the sibling `base` repo. Banyan\nLabs now owns the services, docs, tests, and project-specific infrastructure\nthat will grow on top of that workspace model.\n\n## Development Workflow\n\nBanyan Labs follows Base's issue-first GitHub workflow:\n\n- track work in GitHub Issues before implementation starts\n- prefer `basectl gh` for supported GitHub issue and pull request tasks\n- use one worktree per pull request\n- keep each PR scoped to one issue and link it with `Fixes #\u003cissue\u003e`\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) and\n[docs/github-workflow.md](docs/github-workflow.md) for the full workflow.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeforester%2Fbanyanlabs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeforester%2Fbanyanlabs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeforester%2Fbanyanlabs/lists"}