Advanced Guide
Assumes you have completed the basic guide.
Set Up
1. Clone the repository
git clone https://github.com/aibuildersmx/learn.git2. Install project dependencies
This downloads all the code libraries the project needs:
pnpm install3. Set up environment variables
Copy the example environment file to create your local configuration:
cp .env.local.example .env.localThis creates a local config file with your app's settings
4. Start the development server
pnpm devThe app will start! Look for “ready” messages and a URL like http://localhost:3000
Quick Reference
Essential paths and commands
View Your App
Open http://localhost:3000 in your browser to see the running app
Key Locations
• apps/web/src/app/page.tsx - Homepage to customize
• apps/web/src/components - Reusable components
• /components-test - UI component showcase
