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.
To use ResCLI
, you can download the binary from the Releases page on GitHub.
- Go to the Releases page.
- Download the latest release for your operating system (e.g.,
res-cli-linux
for Linux). - Make the downloaded binary executable:
chmod +x res-cli
Once 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:
./res-cli
- Login: Logs in to the specified user account.
./res-cli --login # Enter email and password when prompted
- Logout: Logs out from the current user account.
./res-cli --logout
- Create Instance: Creates a new ResDB or Python SDK instance.
./res-cli --create <type>
- View Instances: Displays details about running instances.
./res-cli --view-instances
- Delete Instance: Deletes a running ResDB or Python SDK instance.
./res-cli --delete <instance_id>
- Current User: Displays the currently logged-in user.
./res-cli --whoami
For more detailed information about each command, run ./res-cli --help
or ./res-cli <command> --help
.