{"id":13509141,"url":"https://github.com/bunnyshell/cli","last_synced_at":"2026-02-10T10:22:29.401Z","repository":{"id":59047559,"uuid":"525394146","full_name":"bunnyshell/cli","owner":"bunnyshell","description":"The official command line interface for the Bunnyshell API.","archived":false,"fork":false,"pushed_at":"2024-05-22T12:12:27.000Z","size":707,"stargazers_count":12,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-22T13:34:16.846Z","etag":null,"topics":["bunnyshell","cli","eaas","ephemeral","remote-development"],"latest_commit_sha":null,"homepage":"https://environments.bunnyshell.com","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/bunnyshell.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}},"created_at":"2022-08-16T13:34:47.000Z","updated_at":"2024-06-25T09:20:14.419Z","dependencies_parsed_at":"2024-02-21T14:50:30.287Z","dependency_job_id":"66f45ad2-7ae1-4318-a3d1-59c81dbfd9da","html_url":"https://github.com/bunnyshell/cli","commit_stats":null,"previous_names":[],"tags_count":53,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bunnyshell%2Fcli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bunnyshell%2Fcli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bunnyshell%2Fcli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bunnyshell%2Fcli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bunnyshell","download_url":"https://codeload.github.com/bunnyshell/cli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246323914,"owners_count":20759049,"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":["bunnyshell","cli","eaas","ephemeral","remote-development"],"created_at":"2024-08-01T02:01:03.499Z","updated_at":"2026-02-10T10:22:29.319Z","avatar_url":"https://github.com/bunnyshell.png","language":"Go","readme":"```\nBunnyshell CLI helps you manage environments in Bunnyshell and enable Remote Development.\n\nUsage:\n  bns [command]\n\nCommands for Bunnyshell Resources:\n  components         Components\n  environments       Environments\n  events             Events\n  k8s-clusters       Kubernetes Cluster Integrations\n  organizations      Organizations\n  pipeline           Pipeline\n  projects           Projects\n  variables          Environment Variables\n\nCommands for Utilities:\n  git                Git Operations\n  port-forward       Port Forward\n  remote-development Remote Development\n\nCommands for CLI:\n  completion         Generate the autocompletion script for the specified shell\n  configure          Configure CLI settings\n  help               Help about any command\n  version            Version Information\n\nFlags:\n      --configFile string   Bunnyshell CLI Config File (default \"$HOME/.bunnyshell/config.yaml\")\n  -d, --debug               Debug network requests\n  -h, --help                Help for bns\n      --no-progress         Disable progress spinners\n      --non-interactive     Disable interactive terminal\n  -o, --output string       Output format: stylish | json | yaml (default \"stylish\")\n      --profile string      Use profile from config file\n  -v, --verbose count       Increase log verbosity\n      --version             version for bns\n\nUse \"bns [command] --help\" for more information about a command.\n```\n\n- [Installing](#installing)\n  - [Generic Installer](#generic-installer)\n  - [Homebrew](#homebrew)\n  - [Downloading a Release from GitHub](#download-github-release)\n  - [Docker Hub](#docker-hub)\n- [Authentication](#authentication)\n  - [Profiles](#profiles)\n- [Shell Autocomplete](#shell-autocomplete)\n\n## Installing\n\n### Generic Installer\n```sh\ninstaller=$(curl --silent https://raw.githubusercontent.com/bunnyshell/cli/master/installer.sh) \\\n    \u0026\u0026 [ \"33cdd268adb1e26511b0cc90c9f4bf017bb145041677ca52d23a0f93cd13bd58 *stdin\" = \"$(echo -n \"${installer}\" | openssl dgst -sha256 -r)\" ] \\\n    \u0026\u0026 (\n        sh -c \"${installer}\" || :\n    ) \\\n    || echo \"Checksum did not match $(echo -n \"${installer}\" | openssl dgst -sha256 -r)\" \\\n;\n```\n\n| Env Var         | DEFAULT  | Description               |\n| --------------- | -------- | ------------------------- |\n| DEBUG_INSTALLER | false    | Add set -x for the script |\n| PREFER_BREW     | false    | Allow brew installation   |\n| INSTALL_PATH    | .        | Install path for binary   |\n| SUDO_INSTALL    | false    | Use sudo when moving binary to INSTALL_PATH |\n\nExamples:\n```sh\ninstaller=$(curl --silent https://raw.githubusercontent.com/bunnyshell/cli/master/installer.sh) \\\n    \u0026\u0026 [ \"33cdd268adb1e26511b0cc90c9f4bf017bb145041677ca52d23a0f93cd13bd58 *stdin\" = \"$(echo -n \"${installer}\" | openssl dgst -sha256 -r)\" ] \\\n    \u0026\u0026 (\n        SUDO_INSTALL=true INSTALL_PATH=/usr/local/bin sh -c \"${installer}\" || :\n    ) \\\n    || echo \"Checksum did not match $(echo -n \"${installer}\" | openssl dgst -sha256 -r)\" \\\n;\n```\n\n### Homebrew\n```sh\nbrew install bunnyshell/tap/bunnyshell-cli\n```\n\n### Download Github Release\n\nDownload the appropriate archive for your architecture on the [releases page](https://github.com/bunnyshell/cli/releases)\n\nAnd make it available in your `$PATH` or move the binary to `/usr/local/bin`\n\n### Docker Hub\nAll the releases are found on: https://hub.docker.com/r/bunnyshell/cli\n\n```sh\ndocker run --volume ~/.bunnyshell:/root/.bunnyshell bunnyshell/cli environments list\n```\n\n## Authentication\nYou will need an access token from https://environments.bunnyshell.com/access-token\n\nYou can then setup a profile for easy access to your acccount with:\n```sh\nbns configure profiles add\n```\n\n## Shell Autocomplete\nUsing `bns completion SHELL` you can generate autocomplete for your current shell.\n\n### ZSH\n```sh\necho 'source \u003c(bns completion zsh)' \u003e\u003e ~/.zshrc\necho 'compdef _bns bns' \u003e\u003e ~/.zshrc\n```\n\n### Bash\n```sh\necho 'source \u003c(bns completion bash)' \u003e\u003e ~/.bashrc\n```\n","funding_links":[],"categories":["Go","cli"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbunnyshell%2Fcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbunnyshell%2Fcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbunnyshell%2Fcli/lists"}