Delorean CLI
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
To run unit tests, run:
make test/unit