Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 703 Bytes

README.md

File metadata and controls

49 lines (32 loc) · 703 Bytes

Delorean

Delorean CLI

Docs

Building

To build the CLI, run from the root of this repo:

make build/cli

A binary will be created in the root directory of the repo, which can be run:

./delorean

To build a delorean container image:

make image/build

To run some basic tests against the image:

make image/test

To build and test using a container engine other than docker (podman):

make image/test CONTAINER_ENGINE=podman

Testing

To run unit tests, run:

make test/unit