Crates.io | hop-cli |
lib.rs | hop-cli |
version | 0.2.61 |
source | src |
created_at | 2020-05-15 00:36:46.056725 |
updated_at | 2024-01-02 19:54:25.724293 |
description | Interact with Hop in your terminal |
homepage | https://hop.io |
repository | https://github.com/hopinc/hop_cli |
max_upload_size | |
id | 241713 |
size | 1,249,375 |
The Hop CLI allows you to interface with Hop services through your command line. It can be used as a replacement for the Console.
Any of the following will make the
hop
command available to you.
Use your favorite AUR helper to install the package (e.g. paru):
paru -S hop-cli
Install with the Hop Windows Installer 64bit or the Hop Windows Installer 32bit
brew install hopinc/tap/hop
It can be installed with our universal install script:
curl -fsSL https://download.hop.sh/install | sh
To build the application from the source code, you'll first need to install Rust. Then, once you've cloned the repository, you can execute this command within the directory:
cargo install --path .
To get started, you need to log in to your Hop account through the CLI:
hop auth login
A browser window will open the Hop Console and prompt you to allow the CLI to connect to your account. Once done, you will be redirected back.
That's all! You can now start using the CLI.
You can set a default project to use which will automatically be applied to every command.
hop projects switch
You can override it by passing the --project
argument. For example, hop deploy --project api
.
To deploy a project directory, first navigate to the directory through cd
and then execute:
hop deploy
This will deploy the project to Hop, or create a new one if you don't have a Hopfile (hop.yml
) already.
To link a project to a service, first navigate to the directory through cd
and then execute:
hop link
This will link the directory to the deployment and create a Hopfile (hop.yml
).
Contributions are welcome! Please open an issue or pull request if you find any bugs or have any suggestions.