{"id":39675847,"url":"https://github.com/palazzem/hanzo","last_synced_at":"2026-01-18T09:46:04.548Z","repository":{"id":8703671,"uuid":"10369743","full_name":"palazzem/hanzo","owner":"palazzem","description":"Docker and devcontainers build to configure a development environment","archived":false,"fork":false,"pushed_at":"2025-05-09T08:06:33.000Z","size":474,"stargazers_count":23,"open_issues_count":4,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-09T09:23:26.035Z","etag":null,"topics":["devcontainers","devenv","devops-tools","devtools","docker"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/palazzem.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":"2013-05-29T21:24:02.000Z","updated_at":"2025-05-09T08:06:36.000Z","dependencies_parsed_at":"2024-03-20T20:05:06.361Z","dependency_job_id":"e9205bec-4696-49e7-b18f-e4d03c608865","html_url":"https://github.com/palazzem/hanzo","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/palazzem/hanzo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/palazzem%2Fhanzo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/palazzem%2Fhanzo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/palazzem%2Fhanzo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/palazzem%2Fhanzo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/palazzem","download_url":"https://codeload.github.com/palazzem/hanzo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/palazzem%2Fhanzo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28534175,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"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":["devcontainers","devenv","devops-tools","devtools","docker"],"created_at":"2026-01-18T09:46:04.459Z","updated_at":"2026-01-18T09:46:04.533Z","avatar_url":"https://github.com/palazzem.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hanzō\n\n\u003e Hattori Hanzō: You must have big rats if you need Hattori Hanzo's steel.\n\u003e The Bride: ...Huge.\n\n[![Testing](https://github.com/palazzem/hanzo/actions/workflows/test.yaml/badge.svg)](https://github.com/palazzem/hanzo/actions/workflows/test.yaml)\n[![Nightly builds](https://github.com/palazzem/hanzo/actions/workflows/nightly.yaml/badge.svg)](https://github.com/palazzem/hanzo/actions/workflows/nightly.yaml)\n\nHanzo is a CLI tool that helps you set up and manage development environments using DevPod. It provides a streamlined\nworkflow for creating, connecting to, and managing containerized development workspaces.\n\n## Requirements\n\n- Any Docker Engine (e.g [Docker Desktop](https://www.docker.com/products/docker-desktop/), [OrbStack](https://orbstack.dev/), etc...)\n- [DevPod](https://devpod.sh/)\n\n## Quickstart\n\nIf you like living on the bleeding edge and *curlbombs* don't scare you, the automatic installer is the easiest way to get started:\n\n```shell\n$ sh \u003c(curl -L http://j.mp/hattori-hanzo)\n```\n\nThis will install Hanzo in your `~/.local/bin` directory. Make sure this directory is in your PATH.\n\nAfter installation, you'll need to configure Hanzo with your personal information:\n\n```shell\n$ hanzo config init\n```\n\nThis will guide you through setting up your name, username, and email address.\n\n## Manual Installation\n\nIn case you don't want to use the `curl` command above, you can clone or download this repository, using either `git`\nor the [release page](https://github.com/palazzem/hanzo/releases). Run the following commands:\n\n```shell\n$ git clone https://github.com/palazzem/hanzo\n$ cd hanzo/\n$ bash bin/bootstrap.sh\n```\n\n## Using Hanzo\n\nHanzo provides several commands to manage your development environment:\n\n```shell\n$ hanzo help                 # Show help information\n$ hanzo config               # Show current configuration\n$ hanzo config init          # Interactive configuration setup\n$ hanzo config set KEY VALUE # Set a specific configuration value\n$ hanzo up                   # Start your development workspace\n$ hanzo ssh                  # Connect to your workspace via SSH\n$ hanzo down                 # Stop your workspace\n$ hanzo recreate             # Recreate your workspace\n$ hanzo destroy              # Destroy your workspace\n$ hanzo status               # Check workspace status\n```\n\n## Unattended Configuration\n\nIf you don't want to use the interactive configuration, you can set the following environment variables:\n\n* `HANZO_FULLNAME`: your full name used in Git configurations.\n* `HANZO_USERNAME`: your username for the workspace.\n* `HANZO_EMAIL`: your email address used in Git configurations.\n\nYou can also set these values directly using the config command:\n\n```shell\n$ hanzo config set fullname \"Your Name\"\n$ hanzo config set username yourusername\n$ hanzo config set email your.email@example.com\n```\n\n## Contribute\n\nThis tool is designed to streamline my personal development workflow. Because it's unlikely that you use exactly\nmy current environment, you may use this repository as a base to create your own configuration. Indeed, I'll be glad\nto accept any PR that:\n\n* Fixes bugs or issues in the current implementation\n* Improves the script structure or bash best practices\n* Enhances or makes me aware of different methods to manage development environments\n\nI will not merge pull requests that add new development tools, but I will be grateful if you can discuss about it\nin the [issue tracker](https://github.com/palazzem/hanzo/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpalazzem%2Fhanzo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpalazzem%2Fhanzo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpalazzem%2Fhanzo/lists"}