Installation
In this tutorial, you will learn about the dependencies that need to be installed to run Fiamma.
Step 1: Install Golang
wget https://golang.org/dl/go1.23.3.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.23.3.linux-amd64.tar.gz
echo 'export GOROOT=/usr/local/go' >> ~/.profile
echo 'export GOPATH=$HOME/go' >> ~/.profile
echo 'export GOBIN=$HOME/go/bin' >> ~/.profile
echo 'export PATH=$PATH:$GOROOT/bin:$GOBIN' >> ~/.profile
source ~/.profile$ go version
go version go1.22.3 linux/amd64Step 2: Build and Install Fiamma
sudo apt-get install -y make git bash gcc curl jq pkg-config openssl libssl-devLast updated