Skip to content

Installation

🐳 Using Docker

A list of all releases is available here.

bash
docker pull madpixels/go-dyno:latest

# usage example
docker run --rm -ti -v /my_project:/workspace madpixels/go-dyno:latest generate \
  --schema /workspace/schema.json \
  --output-dir /workspace/gen

📦 Downloading the Binary

A list of all releases is available here.

Linux

bash
curl -L https://github.com/Mad-Pixels/go-dyno/releases/latest/download/godyno_linux_amd64 -o godyno
chmod +x godyno
sudo mv godyno /usr/local/bin/
bash
curl -L https://github.com/Mad-Pixels/go-dyno/releases/latest/download/godyno_linux_arm64 -o godyno
chmod +x godyno
sudo mv godyno /usr/local/bin/

macOS

bash
curl -L https://github.com/Mad-Pixels/go-dyno/releases/latest/download/godyno_darwin_amd64 -o godyno
chmod +x godyno
sudo mv godyno /usr/local/bin/
bash
curl -L https://github.com/Mad-Pixels/go-dyno/releases/latest/download/godyno_darwin_arm64 -o godyno
chmod +x godyno
sudo mv godyno /usr/local/bin/

🛠️ Build from Source

Requirements:

  • GoLang must be installed locally.
    The minimum version is specified in go.mod
bash
git clone https://github.com/Mad-Pixels/go-dyno.git
cd go-dyno
go build -o godyno ./cmd/dyno

Released under the MIT License.