Setup: Most of the linux distributions provide a package to install Go, but it is also possible to download its binary.
wget https://dl.google.com/go/go1.13.3.src.tar.gz
tar -C /usr/local -xzf go1.13.3.src.tar.gz
export PATH=$PATH:/usr/local/go/bin
Setup: Once go is installed, we can install mage as follows
go get github.com/magefile/mage
Setup: Most of the linux distrubutions provide a package to install MariaDB, but if docker is installed the following command will spawn a MariaDB container:
mage startdev