Skip to main content
Version: v0.50.x

Overview

Synopsis

Setup your development environment with the essentials to get started building the blockchain.

System Requirements

Before you can install and interact with spawn, you must have the following core tools installed:

If you do not have these components installed, follow the instructions below to install them.

Install Dependencies

Install VSCode if you do not already have a file editor. Once installed, the following extensions are useful

# Setup Homebrew (https://brew.sh/)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
sudo echo 'export PATH=$PATH:/opt/homebrew/bin' >> ~/.zshrc

# Base
brew install make wget jq gh gcc go

# (optional) Github CLI login
# gh auth login

# Docker
brew install --cask docker

# Start docker desktop
open -a Docker
# settings -> General -> Start Docker Desktop when you sign in to your computer
# Apply & Restart

# Setup base git config
git config --global user.email "yourEmail@gmail.com"
git config --global user.name "Your Name"