Install¶
You can install the pre-compiled binary (in several different ways), use Docker or compile from source.
Here are the steps for each of them:
Install the pre-compiled binary¶
homebrew tap (only on macOS for now):
brew install thpham/tap/aspic
scoop:
scoop bucket add thpham https://github.com/thpham/scoop-bucket.git
scoop install aspic
deb/rpm:
Download the .deb or .rpm from the [releases page][releases] and install with dpkg -i and rpm -i respectively.
manually:
Download the pre-compiled binaries from the [releases page][releases] and copy to the desired location.
Running with Docker¶
You can also use it within a Docker container. To do that, you'll need to execute something more-or-less like the following:
docker run -it --rm \
tpham/aspic
Compiling from source¶
Here you have two options:
If you want to contribute to the project, please follow the steps on our contributing guide.
If you just want to build from source for whatever reason, follow these steps:
Clone:
git clone https://github.com/tpham/aspic
cd aspic
Get the dependencies:
go get ./...
Build:
go build -o aspic .
Verify it works:
./aspic --version