{"id":20054580,"url":"https://github.com/crane-cloud/cranecloud-cli","last_synced_at":"2025-11-25T19:04:21.385Z","repository":{"id":213609262,"uuid":"728875412","full_name":"crane-cloud/cranecloud-cli","owner":"crane-cloud","description":"Cranecloud CLI application","archived":false,"fork":false,"pushed_at":"2025-09-15T15:19:02.000Z","size":125,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-23T08:45:13.506Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/crane-cloud.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":"2023-12-07T22:18:20.000Z","updated_at":"2025-09-15T15:19:04.000Z","dependencies_parsed_at":"2025-09-15T17:18:33.272Z","dependency_job_id":"0b29a2ad-e65e-4031-b252-fa3e4a027a81","html_url":"https://github.com/crane-cloud/cranecloud-cli","commit_stats":null,"previous_names":["crane-cloud/cranecloud-cli"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/crane-cloud/cranecloud-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crane-cloud","download_url":"https://codeload.github.com/crane-cloud/cranecloud-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286079811,"owners_count":27282121,"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","status":"online","status_checked_at":"2025-11-25T02:00:05.816Z","response_time":54,"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":[],"created_at":"2024-11-13T12:41:33.420Z","updated_at":"2025-11-25T19:04:21.380Z","avatar_url":"https://github.com/crane-cloud.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cranecloud CLI Client\n\nCranecloud CLI client is a command line tool for interacting with Cranecloud.\n\n## Install via Snap (Linux)\n\n### Install from Snap Store (Recommended)\n\n```bash\nsudo snap install cranecloud\n```\n\n### Build and Install Locally\n\nYou can also build and install a Snap package of the CLI locally.\n\n1. Ensure `snapcraft` is installed. On Ubuntu:\n\n   ```bash\n   sudo snap install snapcraft --classic\n   ```\n\n2. Build the snap from the project root:\n\n   ```bash\n   snapcraft pack\n   ```\n\n   This produces a file like `cranecloud_1.0.0_amd64.snap` in the project directory.\n\n3. Install the snap locally:\n\n   ```bash\n   sudo snap install --dangerous cranecloud_*.snap\n   ```\n\n4. Connect interfaces for network, keyring, and dotfile access (first-time only):\n\n   ```bash\n   sudo snap connect cranecloud:password-manager-service\n   sudo snap connect cranecloud:dot-crane\n   ```\n\n5. Run the CLI:\n\n   ```bash\n   cranecloud.cranecloud --help\n   ```\n\n   Optionally create a shorter alias:\n\n   ```bash\n   sudo snap alias cranecloud.cranecloud cranecloud\n   cranecloud --help\n   ```\n\n## Basic Commands\n\n### Authentication and Account Management\n\n1. **Login:** Authenticate the user with their credentials.\n\n   ```bash\n   cranecloud auth login\n   ```\n\n2. **Logout:** Log out the user, clearing the stored credentials.\n\n   ```bash\n   cranecloud auth logout\n   ```\n\n3. **User Information:** Retrieve information about the logged-in user.\n\n   ```bash\n   cranecloud auth user\n   ```\n\n### Project Management\n\n1. **List Projects:** Show a list of projects available in the user's account.\n\n   ```bash\n   cranecloud projects list\n   ```\n\n2. **Create Project:** Create a new project.\n\n   ```bash\n   cranecloud projects create ...\n   ```\n\n3. **Delete Project:** Delete a project by ID or name.\n\n   ```bash\n   cranecloud projects delete --id \u003cproject_id\u003e\n   ```\n\n4. **Project Details:** View detailed information about a project.\n\n   ```bash\n   cranecloud projects info --id \u003cproject_id\u003e\n   ```\n\n### Configuration Management\n\n1. **List Config:** Show a list of config available for the app.\n\n   ```bash\n   cranecloud config get-config\n   ```\n\n2. **Set current project to use:** This is projects apps commands will default to.\n\n   ```bash\n   cranecloud projects use-project \u003cproject_id\u003e\n   ```\n\n3. **Set current cluster to use:** This is cluster projects commands will default to.\n\n   ```bash\n   cranecloud projects use-project \u003ccluster_id\u003e\n   ```\n\n### App Commands\n\n1. **Deploy App:** Initiate a app .\n\n   ```bash\n   cranecloud apps deploy\n   ```\n\n2. **List Apps:** Show apps within a project.\n\n   ```bash\n   cranecloud apps list \n   ```\n\n3. **Update App:** Update app information.\n\n   ```bash\n   cranecloud apps update  \u003capp_id\u003e\n   ```\n\n4. **App Details:** View detailed information about a specific app.\n\n   ```bash\n   cranecloud apps info  \u003capp_id\u003e\n   ```\n\n5. **Delete App:** Delete a app by ID or name.\n\n   ```bash\n   cranecloud projects delete --id \u003cproject_id\u003e\n   ```\n\n### Other Useful Commands\n\n1. **Help Information:** Show manual.\n\n   ```bash\n   cranecloud help\n   ```\n\n2. **Support:** Contact support or report issues.\n\n   ```bash\n   cranecloud support\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrane-cloud%2Fcranecloud-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrane-cloud%2Fcranecloud-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrane-cloud%2Fcranecloud-cli/lists"}