{"id":20290631,"url":"https://github.com/gocardless/cli-releases","last_synced_at":"2026-01-19T23:03:28.153Z","repository":{"id":42000816,"uuid":"473224353","full_name":"gocardless/cli-releases","owner":"gocardless","description":"Release repo for the gocardless cli ","archived":false,"fork":false,"pushed_at":"2026-01-14T12:02:07.000Z","size":264,"stargazers_count":4,"open_issues_count":10,"forks_count":3,"subscribers_count":42,"default_branch":"master","last_synced_at":"2026-01-17T17:26:13.633Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gocardless.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-03-23T14:27:57.000Z","updated_at":"2025-12-08T15:53:58.000Z","dependencies_parsed_at":"2024-06-26T10:38:09.681Z","dependency_job_id":"90d08ac6-b0a8-4979-a397-0558b3d3def6","html_url":"https://github.com/gocardless/cli-releases","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/gocardless/cli-releases","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocardless%2Fcli-releases","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocardless%2Fcli-releases/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocardless%2Fcli-releases/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocardless%2Fcli-releases/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gocardless","download_url":"https://codeload.github.com/gocardless/cli-releases/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocardless%2Fcli-releases/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28588969,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T20:45:59.482Z","status":"ssl_error","status_checked_at":"2026-01-19T20:45:41.500Z","response_time":67,"last_error":"SSL_read: 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":[],"created_at":"2024-11-14T15:08:33.446Z","updated_at":"2026-01-19T23:03:28.147Z","avatar_url":"https://github.com/gocardless.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GoCardless CLI\n\nThe GoCardless CLI enables you to build and test your GoCardless integration right from the terminal.\n\n**A brief outline of things you can do with the CLI:**\n\n- Trigger events directly from terminal and test webhooks \n- Transition payment objects from one state to another\n- Create, retrieve, update, or delete API objects.\n\n![demo](demo.gif)\n\n## Installation\n\nGoCardless CLI is available for macOS, Windows, and Linux for distros like Ubuntu, Debian, RedHat and CentOS.\n\nRefer to the [getting started page](https://developer.gocardless.com/getting-started/developer-tools/gocardless-cli/) for more on how to get started\n\n### macOS\n\nGoCardless CLI is available on macOS via [Homebrew](https://brew.sh/):\n\n```sh\nbrew install gocardless/taps/cli\n```\n\n### Linux\n\nRefer to the [installation instructions](https://developer.gocardless.com/cli-reference#installation) for available Linux installation options.\n\n### Windows\n\nRefer to the [installation instructions](https://developer.gocardless.com/cli-reference#installation) for available Windows installation options.\n\n### Docker\n\nThe GC CLI is also available as a [Docker image](https://hub.docker.com/r/gocardless/gc-cli).\n\nFirst set up a volume for the gc-cli container:\n\n```sh\ndocker volume create gc_config\n```\n\nTo login\n\n```sh\ndocker run -v gc_config:/.gc-cli -p 8080:8080 --rm -it gocardless/gc-cli:latest login\n```\n\nRefer to the [login instructions](https://developer.gocardless.com/cli-reference/gc_login) for other login variations\n\nTo run commands\n\n```sh\n```sh\nalias gc=\"docker run -v gc_config:/.gc-cli --rm -it gocardless/gc-cli:latest\"\ngc [command]\n```\n```\n\n## Usage\n\nOnce installed, you now have access to the `gc` command.\n\n```sh-session\ngc [command]\n\n# Run `--help` for detailed information about CLI commands\ngc [command] help\n```\n\n## Commands\n\nThe GoCardless CLI supports a broad range of commands. Below is some of the most used ones:\n- [`login`](https://developer.gocardless.com/cli-reference/gc_login/)\n- [`listen`](https://developer.gocardless.com/cli-reference/gc_listen/)\n- [`trigger`](https://developer.gocardless.com/cli-reference/gc_trigger/)\n- [`list`](https://developer.gocardless.com/cli-reference/gc_list/)\n- [`get`](https://developer.gocardless.com/cli-reference/gc_get/)\n- [`config`](https://developer.gocardless.com/cli-reference/gc_config/)\n- [`open`](https://developer.gocardless.com/cli-reference/gc_open/)\n- [`create`](https://developer.gocardless.com/cli-reference/gc_create/)\n\n## Documentation\n\nFor a full reference, see the [CLI reference site](https://developer.gocardless-staging.io/cli-reference)\n\n## Feedback\n\nFor any feedback you might have for us, please open an issue within the repository.\n\n## License\nCopyright (c) GoCardless. All rights reserved.\n\nLicensed under the [Apache License 2.0 license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgocardless%2Fcli-releases","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgocardless%2Fcli-releases","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgocardless%2Fcli-releases/lists"}