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
-
Clone the repository
git clone https://github.com/atlas-cli/monorepo.git cd monorepo -
Install dependencies
pnpm install -
Start infrastructure
Start the required services (PostgreSQL, Redis) using Docker Compose:
pnpm composer:up -
Run Migrations
Set up the database schema:
pnpm migration:run -
Seed the Database
Populate the database with initial data:
pnpm db:seed -
Start Development Server
Launch all applications in development mode:
pnpm devThe API will typically run on
http://localhost:3000and the frontend applications on their respective ports.
Next Steps
- Explore the Architecture
- Learn about Authentication