1
1
Fork 0
mirror of https://github.com/mcuadros/ascode synced 2024-05-08 08:36:15 +02:00
ascode/_documentation/install.md
2020-03-29 22:07:15 +02:00

1.6 KiB
Raw Permalink Blame History

title weight
Quick Install 1

AsCode is written in Go with support for multiple platforms.

The latest release can be found at GitHub Releases., currently provides pre-built binaries for the following:

  • Linux
  • macOS (Darwin)
  • Windows

Binary (Cross-platform)

Download the appropriate version for your platform from GitHub Releases.. Once downloaded, the binary can be run from anywhere. You dont need to install it into a global location.

Ideally, you should install it somewhere in your PATH for easy use. /usr/local/bin is the most probable location.

Linux

wget https://github.com/mcuadros/ascode/releases/download/{{< param "version" >}}/ascode-{{< param "version" >}}-linux-amd64.tar.gz
tar -xvzf ascode-{{< param "version" >}}-linux-amd64.tar.gz
mv ascode /usr/local/bin/

macOS (Darwin)

wget https://github.com/mcuadros/ascode/releases/download/{{< param "version" >}}/ascode-{{< param "version" >}}-darwin-amd64.tar.gz
tar -xvzf ascode-{{< param "version" >}}-darwin-amd64.tar.gz
mv ascode /usr/local/bin/

Source

Prerequisite Tools

  • Git
  • Go (at least Go 1.12)

Clone from GitHub

AsCode uses the Go Modules, so the easiest way to get started is to clone AsCode in a directory outside of the $GOPATH, as in the following example:

git clone https://github.com/mcuadros/ascode.git $HOME/ascode-src
cd $HOME/ascode-src
go install ./...