/monorepo

Quick Start

Get started with Monorepo Boilerplate in minutes.

Follow these steps to get the Monorepo Boilerplate monorepo up and running on your local machine.

Prerequisites

Ensure you have the following installed:

Installation

  1. Clone the repository

    git clone https://github.com/atlas-cli/monorepo.git
    cd monorepo
  2. Install dependencies

    pnpm install
  3. Start infrastructure

    Start the required services (PostgreSQL, Redis) using Docker Compose:

    pnpm composer:up
  4. Run Migrations

    Set up the database schema:

    pnpm migration:run
  5. Seed the Database

    Populate the database with initial data:

    pnpm db:seed
  6. Start Development Server

    Launch all applications in development mode:

    pnpm dev

    The API will typically run on http://localhost:3000 and the frontend applications on their respective ports.

Next Steps