Step CLI
step
is a zero trust swiss army knife. It’s an easy-to-use and hard-to-misuse
utility for building, operating, and automating systems that use zero trust
technologies like authenticated encryption (X.509, TLS), single sign-on (OAuth
OIDC, SAML), multi-factor authentication (OATH OTP, FIDO U2F), encryption
mechanisms (JSON Web Encryption, NaCl), and verifiable claims (JWT, SAML
assertions).
Table of Contents
Installing
These instructions will install an OS specific version of the step
binary on
your local machine.
Mac OS
Install step
via Homebrew:
brew install smallstep/smallstep/step
Test:
step certificate inspect https://smallstep.com
Linux
Download the latest Debian package from releases:
wget https://github.com/smallstep/cli/releases/download/X.Y.Z/step_X.Y.Z_amd64.deb
Install the Debian package:
sudo dpkg -s step_X.Y.Z_amd64.deb
Test:
step certificate inspect https://smallstep.com
Getting Started with Development
These instructions will get you a copy of the project up and running on your
local machine for development, testing, and contribution purposes.
Please read the CLI Style Guide before
implementing any features or modifying behavior as it contains expectations
surrounding how the CLI should behave.
All changes to behavior must be documented in the CHANGELOG.md.
Prerequisites
To get started with local development, you will need three things:
- Golang installed locally (instructions available
here.
- dep installed locally (instructions available
here.
- A version of
make
available for usage of the Makefile
.
- The repository checked out in the appropriate location of your
$GOPATH
.
Ensure you've checked out the repository into the appropriate path inside your
$GOPATH
. For example, if your $GOPATH
is set to ~/go
, then you'd check
this repository out at ~/go/src/github.com/smallstep/cli
. You can
learn more about $GOPATH
in the
documentation.
Installing Dependencies and Bootstrapping
Once you've cloned the repository to the appropriate location, you will now be
able to install any other dependencies via the make bootstrap
command.
You should only ever need to run this command once, as it will ensure you have
the right version of dep
and gometalinter
installed.
Building step
To build step, simply run make build
which will build the cli and place the
binary in the bin
folder.
Running Tests and Linting
Now that you've installed any dependencies, you can run the tests and lint the
code base simply by running make
.
Unit Tests
Run the unit tests:
make test
For a more verbose version of the unit tests:
make vtest
Integration Tests
Run the integration tests:
make integration
And coding style tests
These tests apply the following Go
linters to verify code style and formatting:
make lint
Adding and Removing Dependencies
To add any dependency to the repository, simply import it into your code and
then run dep ensure
which will update the Gopkg.lock
file. A specific
version of a dependency can be specified by adding it to the Gopkg.toml
file
and running dep ensure
.
To remove a dependency, simply remove it from the codebase and any mention of
it in the Gopkg.toml
file and run dep ensure
which will remove it from the
vendor
folder while updating the Gopkg.lock
file.
Versioning
We use SemVer for versioning. For the versions available,
see the tags on this repository.
License
This project is licensed under the MIT License - see the
LICENSE file for details