Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Installation

Detailed installation instructions for all platforms.

Prerequisites

  • Node.js 20.x or higher
  • pnpm 9.x or higher
# Check versions
node --version  # Should be v20.x or higher
pnpm --version  # Should be v9.x or higher

Clone Repository

git clone https://github.com/zeroexcore/vault.git
cd vault

Install Dependencies

pnpm install

Build All Packages

pnpm build

This builds:

  • @pwm/shared - Shared utilities
  • @pwm/api - API server
  • @pwm/web - Web application
  • @pwm/cli - Command-line interface

Verify Installation

# Run tests
pnpm test
 
# Type check
pnpm typecheck

Next Steps