Prerequisites
Overview
This documentation guide provides instructions for installing the proper prerequisites to run Buildog on your local environment.
Programming Languages Setup
- Go (version 1.20 or later)
- JavaScript (ES6+)
Go Setup
-
Download Go from the official website (opens in a new tab)
-
Follow the installation instructions for your operating system
-
Verify installation:
go version
Packages
- Node.js (LTS versions starting from version 18)
- pnpm (version 8.x.x)
Node.js and pnpm Setup
-
Install Node.js:
- Download from Node.js website (opens in a new tab)
- Choose one of the LTS versions (18 or later)
-
Install pnpm globally:
npm install -g pnpm@8.15.4
-
Verify installations:
node --version pnpm --version
Tools
- PostgreSQL (version 15 or later)
PostgreSQL Setup
-
Download PostgreSQL from the official website (opens in a new tab)
-
Follow the installation wizard for your operating system
-
Remember to note down your superuser password during installation
-
Verify installation:
psql --version