{"id":29595173,"url":"https://github.com/apache/incubator-resilientdb-rescli","last_synced_at":"2025-07-20T08:05:32.798Z","repository":{"id":210531725,"uuid":"726746038","full_name":"apache/incubator-resilientdb-ResCLI","owner":"apache","description":"Global-Scale Sustainable Blockchain Fabric","archived":false,"fork":false,"pushed_at":"2025-07-14T16:27:30.000Z","size":39529,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-07-15T05:52:05.445Z","etag":null,"topics":["blockchain","blockchain-platform","crypto","distributed-database","distributed-ledger","key-value-database","smart-contracts","solidity","utxo"],"latest_commit_sha":null,"homepage":"https://resilientdb.incubator.apache.org/","language":"Ruby","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/apache.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2023-12-03T09:16:20.000Z","updated_at":"2025-07-14T16:27:34.000Z","dependencies_parsed_at":"2024-04-19T00:22:30.381Z","dependency_job_id":"dd9fcbfa-d0e7-46c6-a00a-f5ce81d841e8","html_url":"https://github.com/apache/incubator-resilientdb-ResCLI","commit_stats":null,"previous_names":["gopuman/resdb-cli","apache/incubator-resilientdb-rescli"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/apache/incubator-resilientdb-ResCLI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fincubator-resilientdb-ResCLI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fincubator-resilientdb-ResCLI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fincubator-resilientdb-ResCLI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fincubator-resilientdb-ResCLI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/incubator-resilientdb-ResCLI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fincubator-resilientdb-ResCLI/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266087790,"owners_count":23874519,"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":["blockchain","blockchain-platform","crypto","distributed-database","distributed-ledger","key-value-database","smart-contracts","solidity","utxo"],"created_at":"2025-07-20T08:05:32.061Z","updated_at":"2025-07-20T08:05:32.770Z","avatar_url":"https://github.com/apache.png","language":"Ruby","readme":"![](https://img.shields.io/github/v/release/ResilientApp/ResCLI)\n![](https://img.shields.io/badge/language-ruby-orange.svg)\n![](https://img.shields.io/badge/platform-Ubuntu20.0+-lightgrey.svg)\n![GitHub](https://img.shields.io/github/license/ResilientApp/ResCLI)\n\n# ResCLI\n\n`ResCLI` is a command-line interface for managing ResDB instances and Python SDK instances. It provides functionalities to create, delete, view, and manage instances in a simple and efficient way.\n\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Configuration](#configuration)\n- [Usage](#usage)\n- [Commands](#commands)\n\n## Installation\n\nTo use `ResCLI`, you can download the binary from the [Releases](https://github.com/ResilientApp/ResCLI/releases) page on GitHub.\n\n1. Go to the [Releases](https://github.com/ResilientApp/ResCLI/releases) page.\n2. Download the latest release for your operating system (e.g., `res-cli-linux` for Linux).\n3. Make the downloaded binary executable:\n\n```bash\nchmod +x res-cli\n```\n\u003c!-- \n## Configuration\n\n`res-cli` uses a configuration file (`config.ini`) to store settings such as the flaskBaseUrl. Follow the steps below to configure the CLI:\n\nCreate a configuration file named `config.ini`, Replace the flaskBaseUrl value with the appropriate Flask API server connection string.:\n\n   ```ini\n    [Server]\n    flask_base_url = http://xyz:1234\n    \n    [User]\n    current_user = bob@gmail.com\n   ``` --\u003e\n\n## Usage\n\nOnce installed and configured, you can use res-cli to perform various actions related to ResDB and Python SDK instances. Run the CLI with the following command:\n\n```bash\n    ./res-cli\n```\n\n## Commands\n\n- **Login**: Logs in to the specified user account.\n\n```bash\n    ./res-cli --login # Enter email and password when prompted\n```\n\n- **Logout**: Logs out from the current user account.\n\n```bash\n    ./res-cli --logout\n```\n\n- **Create Instance**: Creates a new ResDB or Python SDK instance.\n\n```bash\n    ./res-cli --create \u003ctype\u003e\n```\n\n- **View Instances**: Displays details about running instances.\n\n```bash\n    ./res-cli --view-instances\n```\n\n- **Delete Instance**: Deletes a running ResDB or Python SDK instance.\n\n```bash\n    ./res-cli --delete \u003cinstance_id\u003e\n```\n\n- **Current User**: Displays the currently logged-in user.\n\n```bash\n    ./res-cli --whoami\n```\n\nFor more detailed information about each command, run `./res-cli --help` or `./res-cli \u003ccommand\u003e --help`.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fincubator-resilientdb-rescli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fincubator-resilientdb-rescli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fincubator-resilientdb-rescli/lists"}