{"id":18171318,"url":"https://github.com/cloudforet-io/cfctl","last_synced_at":"2025-08-09T03:43:48.972Z","repository":{"id":260651856,"uuid":"881948682","full_name":"cloudforet-io/cfctl","owner":"cloudforet-io","description":"cloudforet-io's Command Line Interface","archived":false,"fork":false,"pushed_at":"2024-12-18T13:33:57.000Z","size":4091,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-18T13:43:45.817Z","etag":null,"topics":["beta","cfctl","cli","go","spacectl","tools"],"latest_commit_sha":null,"homepage":"","language":"Go","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/cloudforet-io.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":"2024-11-01T14:57:22.000Z","updated_at":"2024-12-18T13:34:01.000Z","dependencies_parsed_at":"2024-12-10T10:27:34.747Z","dependency_job_id":"5e18a4b7-4382-4777-92d2-d01344f37916","html_url":"https://github.com/cloudforet-io/cfctl","commit_stats":{"total_commits":3,"total_committers":2,"mean_commits":1.5,"dds":"0.33333333333333337","last_synced_commit":"71221a60b337f4a1a550aff57a86a716131e6322"},"previous_names":["cloudforet-io/cfctl"],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudforet-io%2Fcfctl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudforet-io%2Fcfctl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudforet-io%2Fcfctl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudforet-io%2Fcfctl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudforet-io","download_url":"https://codeload.github.com/cloudforet-io/cfctl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230645357,"owners_count":18258530,"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":["beta","cfctl","cli","go","spacectl","tools"],"created_at":"2024-11-02T15:08:40.374Z","updated_at":"2025-08-09T03:43:48.941Z","avatar_url":"https://github.com/cloudforet-io.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cfctl - Command Line Interface for SpaceONE\n\n**cfctl** is a powerful command-line interface tool designed to interact with SpaceONE services. It provides a seamless way to manage and control your SpaceONE resources through the command line.\n\n# Features\n\n- **Dynamic Service Discovery**: Automatically discovers and interacts with available SpaceONE services\n- **Multi-Environment Support**: Manages multiple environments (user/app) with easy switching\n- **Secure Authentication**: Supports both user and application token-based authentication\n- **Rich Output Formats**: Supports various output formats including table, yaml, json, and csv\n- **Alias**: Configurable resource aliases for faster command execution\n\n# 01. Installation\n\n## Using Homebrew (Recommended)\n\n```bash\nbrew tap cloudforet-io/tap\nbrew install cfctl\n```\n\n## Manual Installation\n\n### macOS\n\n**For Intel Mac**\n\n```bash\nwget \"https://github.com/cloudforet-io/cfctl/releases/latest/download/cfctl_Darwin_x86_64.tar.gz\"\n```\n\n```\ntar xvf cfctl_Darwin_x86_64.tar.gz\nchmod +x cfctl\nmv cfctl /usr/local/bin/\n```\n\n**For Apple Silicon Mac**\n\n```bash\nwget \"https://github.com/cloudforet-io/cfctl/releases/latest/download/cfctl_Darwin_arm64.tar.gz\"\n```\n\n```bash\ntar xvf cfctl_Darwin_arm64.tar.gz\nchmod +x cfctl\nmv cfctl /usr/local/bin/\n```\n\n\n### Linux\n\n**For x86_64**\n\n```bash\nwget \"https://github.com/cloudforet-io/cfctl/releases/latest/download/cfctl_Linux_x86_64.tar.gz\"\n```\n\n```bash\ntar xvf cfctl_Linux_x86_64.tar.gz\nchmod +x cfctl\nmv cfctl /usr/local/bin/\n```\n\n**For ARM64**\n\n```bash\nwget \"https://github.com/cloudforet-io/cfctl/releases/latest/download/cfctl_Linux_arm64.tar.gz\"\n```\n\n```bash\ntar xvf cfctl_Linux_arm64.tar.gz\nchmod +x cfctl\nmv cfctl /usr/local/bin/\n```\n\n### Docker\n\n**Pull the latest image**\n\n```bash\ndocker pull cloudforet/cfctl:latest\n```\n\n**Create an alias for easier use**\n\nbash\n\n```bash\necho 'alias cfctl=\"docker run --rm -it -v $HOME/.cfctl:/root/.cfctl cloudforet/cfctl:latest\"' \u003e\u003e ~/.bashrc\nsource ~/.bashrc\n```\n\nzsh\n\n```bash\necho 'alias cfctl=\"docker run --rm -it -v $HOME/.cfctl:/root/.cfctl cloudforet/cfctl:latest\"' \u003e\u003e ~/.zshrc\nsource ~/.zshrc\n```\n\nfish\n\n```bash\necho 'alias cfctl=\"docker run --rm -it -v $HOME/.cfctl:/root/.cfctl cloudforet/cfctl:latest\"' \u003e\u003e ~/.config/fish/config.fish\nsource ~/.config/fish/config.fish\n```\n\n### Windows\n1. Download the latest Windows release from our [releases page](https://github.com/cloudforet-io/cfctl/releases)\n2. Extract the `cfctl_Windows_x86_64.zip` file\n3. Add the extracted directory to your system's PATH environment variable\n4. Open PowerShell or Command Prompt and verify the installation:\n\n```powershell\ncfctl\n```\n\n# 02. Quick Start\n\n## 2.1. Initialize `cfctl` configuration\n\n```bash\ncfctl setting init\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudforet-io%2Fcfctl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudforet-io%2Fcfctl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudforet-io%2Fcfctl/lists"}