- Home
- Getting Started
- Development Setup
Development Setup
Guide for setting up your local machine for Zoos Global projects.
This guide steps you through configuring your workstation for development on Zoos Global projects.
Prerequisites
Section titled “Prerequisites”Before starting, make sure you have the following installed on your machine:
- macOS / Linux: We recommend using macOS or a Linux-based OS.
- Homebrew (macOS): Run
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"to install. - Git: Installed via Homebrew (
brew install git) or your system package manager. - Node.js: We recommend installing Node.js (LTS version) using
nvmorfnm.
Global Packages
Section titled “Global Packages”Install the following tools globally:
# Install PNPM globallynpm install -g pnpm
# Install AWS CLIbrew install awscliEditor Configuration
Section titled “Editor Configuration”We recommend using Visual Studio Code (VS Code) with the following extensions:
- Astro
- MDX
- Prettier - Code formatter
- ESLint
Verifying Setup
Section titled “Verifying Setup”To verify that your setup is working, clone one of our main repositories and run:
pnpm installpnpm devIf the development server starts successfully at http://localhost:3000 (or similar), your workstation is ready!

