You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ aqua-registry helpNAME: aqua-registry - CLI to develop aqua Registry. https://github.com/aquaproj/registry-toolUSAGE: aqua-registry [global options] command [command options] [arguments...]VERSION: 0.1.4 (d7c108f77ea8576de6e7ece77f5fa07ef66a6d0e)COMMANDS: scaffold Scaffold a package create-pr-new-pkg Create a pull request to add new packages generate-registry, gr Update registry.yaml completion Output shell completion script for bash or zsh version Show version init Create configuration files patch-checksum Patch a checksum configuration help, h Shows a list of commands or help for one commandGLOBAL OPTIONS: --help, -h show help (default: false) --log-level value log level [$AQUA_LOG_LEVEL] --version, -v print the version (default: false)
aqua-registry scaffold
$ aqua-registry help scaffoldNAME: aqua-registry scaffold - Scaffold a packageUSAGE: $ aqua-registry scaffold <package name>DESCRIPTION: Scaffold a package. aqua >= v1.14.0 is required. e.g. $ aqua-registry scaffold cli/cli This tool does the following things. 1. Scaffold configuration files. 1. Install packages for testing -- 1. Create directories pkgs/<package name> 2. Create pkgs/<package name>/pkg.yaml and pkgs/<package name>/registry.yaml 3. Update registry.yaml 4. Create or update aqua.yaml 5. aqua g -i <package name> 6. aqua i
aqua-registry create-pr-new-pkg
$ aqua-registry help create-pr-new-pkgNAME: aqua-registry create-pr-new-pkg - Create a pull request to add new packagesUSAGE: aqua-registry create-pr-new-pkg <package name> [<package name> ...]DESCRIPTION: Create a pull request to add new packages. e.g. $ aqua-registry create-pr-new-pkg cli/cli This tool does the following things. 1. Create a feature branch 2. Create a commit 3. Push the commit to origin 4. Open a web browser to create a request with GitHub CLI
$ aqua-registry help generate-registryNAME: aqua-registry generate-registry - Update registry.yamlUSAGE: aqua-registry grDESCRIPTION: Update registry.yaml This command updates registry.yaml on the repository root directory. Don't edit it manually, and if you update registry.yaml in the pkgs directory, don't forget to run this command. No argument is needed.
aqua-registry patch-checksum
$ aqua-registry help patch-checksumNAME: aqua-registry patch-checksum - Patch a checksum configurationUSAGE: $ aqua-registry patch-checksum <registry configuration file path>DESCRIPTION: Patch a checksum configuration. e.g. $ aqua-registry patch-checksum pkgs/suzuki-shunsuke/tfcmt/registry.yaml
aqua-registry completion
$ aqua-registry help completionNAME: aqua-registry completion - Output shell completion script for bash or zshUSAGE: aqua-registry completion [arguments...]DESCRIPTION: Output shell completion script for bash or zsh Run these commands in .bash_profile or .zprofile e.g. .bash_profile if command -v aqua-registry &> /dev/null; then source <(aqua-registry completion bash); fi .zprofile if command -v aqua-registry &> /dev/null; then source <(aqua-registry completion zsh); fi