Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.13 KB

README.md

File metadata and controls

40 lines (27 loc) · 1.13 KB

CLI

CLI is a repository containing all the CLI applications for Gostalt. Currently, there is the gostalt binary for creating new Gostalt projects.

gostalt

Gostalt is a binary for creating new Gostalt applications. Over time, more functionality may be added, and additional CLI applications may be created.

Installing

To install gostalt, just run go install github.com/gostalt/cli/gostalt@latest (assuming a correctly configured Go toolchain).

In time, once the ecosystem is more stable, the @latest pin will change to a given version number.

Commands

new

The new command is used to create a new Gostalt project in the current directory. For example, to create a new project called blog:

gostalt new blog

You'll get feedback as each step of the new command is ran, as well as instructions on how to run the freshly created application.