{"id":36484153,"url":"https://github.com/zezaeoh/gbox","last_synced_at":"2026-01-12T01:10:18.772Z","repository":{"id":42507148,"uuid":"471881804","full_name":"zezaeoh/gbox","owner":"zezaeoh","description":":inbox_tray: use github as storage :outbox_tray:","archived":false,"fork":false,"pushed_at":"2022-04-09T08:04:14.000Z","size":51,"stargazers_count":10,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-19T17:50:58.368Z","etag":null,"topics":["cli","gbox","go","golang","secret-management","storage"],"latest_commit_sha":null,"homepage":"","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/zezaeoh.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}},"created_at":"2022-03-20T04:50:06.000Z","updated_at":"2024-01-01T22:33:29.000Z","dependencies_parsed_at":"2022-08-26T04:10:41.613Z","dependency_job_id":null,"html_url":"https://github.com/zezaeoh/gbox","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/zezaeoh/gbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zezaeoh%2Fgbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zezaeoh%2Fgbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zezaeoh%2Fgbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zezaeoh%2Fgbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zezaeoh","download_url":"https://codeload.github.com/zezaeoh/gbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zezaeoh%2Fgbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28330327,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T00:36:25.062Z","status":"ssl_error","status_checked_at":"2026-01-12T00:36:15.229Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cli","gbox","go","golang","secret-management","storage"],"created_at":"2026-01-12T01:10:16.846Z","updated_at":"2026-01-12T01:10:18.763Z","avatar_url":"https://github.com/zezaeoh.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `gbox` - :inbox_tray: use github as storages :outbox_tray:\n\n[![Coverage Status](https://coveralls.io/repos/github/zezaeoh/gbox/badge.svg?branch=main)](https://coveralls.io/github/zezaeoh/gbox?branch=main) [![Go Report Card](https://goreportcard.com/badge/github.com/zezaeoh/gbox)](https://goreportcard.com/report/github.com/zezaeoh/gbox)\n\n## Installation\n\nTo download the latest release, run:\n\n```bash\ncurl --silent --location \"https://github.com/zezaeoh/gbox/releases/latest/download/gbox_$(uname -s)_amd64.tar.gz\" | tar xz -C /tmp\nsudo mv /tmp/gbox /usr/local/bin\n```\n\nFor ARM system, please change ARCH (e.g. armv6, armv7 or arm64) accordingly\n\n```bash\ncurl --silent --location \"https://github.com/zezaeoh/gbox/releases/latest/download/gbox_$(uname -s)_arm64.tar.gz\" | tar xz -C /tmp\nsudo mv /tmp/gbox /usr/local/bin\n```\n\nmacOS users can use [Homebrew](https://brew.sh):\n\n```bash\nbrew tap zezaeoh/gbox\nbrew install gbox\n```\n\n## Basic Usage\n\n### Add storage config\n\n```bash\ngbox storage add\n```\n\n```bash\n$ gbox storage add\n? Name of storage gbox-test\n? Kind of storage github\n? Repository URL https://github.com/zezaeoh/gbox-test\n? Repository Branch main\n? Authentication method none\n* Successfully add github storage config: gbox-test\n```\n\nafter simple survey, storage config will be store in your local path `~/.config/gbox/`\n\nif you want to add private repository, you should add github token to your storage config\n\n### List storage configs\n\n```bash\ngbox storage list\n```\n\n```bash\n$ gbox storage list\n* gbox-test\n* ✓ gbox-storage\n```\n\nactive storage is checked\n\n### Set active storage\n\n```bash\ngbox storage set \u003cname\u003e\n```\n\n```bash\n$ gbox storage set gbox-test\n* Storage Configured: gbox-test\n\n# check active storage\n$ gbox storage list\n* ✓ gbox-test\n* gbox-storage\n```\n\n### Set data\n\n```bash\ngbox set \u003cname\u003e \u003cdata\u003e\n```\n\n```bash\n$ gbox set test/my-secret supersupersecret\n* Set: test/my-secret\n```\n\n### Get data\n\n```bash\ngbox get \u003cname\u003e\n```\n\n```bash\n$ gbox get test/my-secret\nsupersupersecret\n```\n\n### Delete data\n\n```bash\ngbox delete \u003cname\u003e\n```\n\n```bash\n$ gbox delete test/my-secret\n* Delete: test/my-secret\n```\n\n### List data\n```bash\ngbox list\n```\n\n```bash\n$ gbox list\n/\n├─ test/\n│  ├─ sample/\n│  │  └─ whoami\n│  ├─ test\n│  └─ test2\n└─ github/\n   └─ token/\n      ├─ zezaeoh\n      └─ zezaeoh2\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzezaeoh%2Fgbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzezaeoh%2Fgbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzezaeoh%2Fgbox/lists"}