Skip to content

Latest commit

 

History

History
95 lines (62 loc) · 1.1 KB

File metadata and controls

95 lines (62 loc) · 1.1 KB

PNPM Commands

General Commands

  1. Install dependencies:

    pnpm install
  2. Build the project:

    pnpm build
  3. Run the development environment:

    pnpm dev
  4. Run all tests (unit and integration):

    pnpm test:all

Backend Commands

  1. Start the backend API:

    pnpm start:api
  2. Run a Stellar network scan:

    pnpm start:scan-network 1 0
  3. Run a history scan:

    pnpm start:scan-history 1 1

Frontend Commands

  1. Start the frontend server:

    pnpm start:frontend

Testing Commands

  1. Run unit tests:

    pnpm test:unit
  2. Run integration tests:

    pnpm test:integration
  3. Run linting:

    pnpm lint

Additional Commands

  1. Build TypeScript packages:

    pnpm build:ts
  2. Force rebuild TypeScript packages:

    pnpm build:ts:force
  3. List all available commands:

    pnpm run