bcgov / octk-cli

0 stars 2 forks source link

OCTK CLI

octk (Open Cloud Toolkit) is a cli tool built using Cobra and Cobra Generator. This tool serves as a central place to nicely package scripts that are frequently used by Cloud Pathfinder admins. The goal of this tool is to streamline daily admin tasks as well as bring new admins up to speed faster.

Prerequisites

Usage

install the cli locally:

go install github.com/bcgov/octk-cli/octk@latest

to see usage instructions try octk or octk --help

Development

Use the Cobra Generator to create new commands, arguments or flags.

  go install github.com/spf13/cobra/cobra@latest

Useful Guides

How to create a CLI in golang with cobra