Skip to content

??? Development Setup Guide

Follow these steps to initialize the WealthFam ecosystem in your local development environment.

?? Prerequisites

  • Python 3.10+
  • Node.js 18+
  • npm or yarn
  • Git

?? Installation

  1. Clone the Repositories: We recommend using the Workspace Setup Script in the Infra repository.

  2. Backend Setup: ash cd backend python -m venv venv source venv/bin/activate pip install -r requirements.txt uvicorn app.main:app --reload

  3. Frontend Setup: ash cd frontend npm install npm run dev

  4. Parser Setup: ash cd parser pip install -r requirements.txt python main.py

WealthFam Engineering Hub