Hyperce Knowledge Base
Onboarding

Tooling Setup

How to set up your local development environment.

Required Tools

Install the following tools before starting development:

ToolVersionInstall
Node.js>= 20nodejs.org
pnpm>= 9npm install -g pnpm
DockerLatestdocker.com
GitLatestPre-installed on macOS, apt install git on Linux

Repository Setup

# Clone the repo
git clone git@github.com:isxwor/hyperce-knowledge-base.git

# Install dependencies
cd hyperce-knowledge-base
pnpm install

# Start dev server
pnpm dev

IDE Setup

We recommend VS Code with the following extensions:

  • ESLint / Biome
  • Prettier (optional, Biome handles formatting)
  • Tailwind CSS IntelliSense
  • GitLens

Environment Variables

Copy the example env file and fill in the required values:

cp .env.example .env

Ask your team lead for the actual values.

On this page