Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Latest commit

 

History

History
68 lines (44 loc) · 1.86 KB

00-get-started.md

File metadata and controls

68 lines (44 loc) · 1.86 KB

Get Started

External dependencies

To start using sigil you need to make sure you have all the necessary dependencies.

Local

Remote

Download

To download sigil you can use:

Homebrew

brew tap danmx/sigil
brew install sigil

or

brew install danmx/sigil/sigil

Docker

docker pull danmx/sigil:0.7

Source code

Pull the repository and build binaries.

git clone https:/danmx/sigil.git
cd sigil
bazelisk sync

For all binaries (development and release) and Docker image run:

bazelisk build //...

To build a specific platform (Linux, Mac, Windows) use:

bazelisk build --config cross:[darwin|linux|windows]_amd64 :[dev|release]

for working Docker image:

bazelisk build --config cross:linux_amd64 :[dev|release]-image

To debug the image locally use run instead of build.