Getting Started

This guide helps you clone, configure, and run JustineLonglaT-Lane Consulting projects locally. The setup mirrors production pipelines for reliability and parity.

1. Prerequisites

2. Clone the Repository

git clone https://github.com/justine6/justinelonglat-lane-docs.git
cd justinelonglat-lane-docs
pnpm install

Or use npm install if you don’t use pnpm.

3. Local Preview

npx vercel dev

This launches a local Vercel dev server. Visit localhost:3000 to verify everything works before pushing changes.

4. Directory Overview

.
├── _partials/          → Shared header & footer
├── scripts/            → Theme toggle, back-to-top, helpers
├── docs/               → Sectioned system-design docs
├── pages/              → Generated static HTML pages
├── styles.css          → Global docs styling
└── package.json        → Tooling (markdownlint, linkinator, prettier)

5. Next Steps

Continue to the next section to configure editors, linters, and automated checks:

Next: Tooling Setup →