
Getting Started with Starter Directory
Set up your development environment and run the template locally in under five minutes.
This guide walks you through cloning, installing, and running the Starter Directory template on your local machine.
Prerequisites
You will need:
- Node.js 18+ — Check with
node --version - pnpm — Install with
npm install -g pnpmif you do not have it
Installation
Clone the repository and install dependencies:
git clone https://github.com/your-username/your-repo.git
cd your-repo
pnpm install
Running Locally
Start the development server:
pnpm dev
Open http://localhost:3000 in your browser. The site will hot-reload as you make changes.
Project Structure
Here are the key directories you will work with:
content/ # Your MDX content files (articles, guides)
src/
app/ # Next.js App Router pages and layouts
components/ # React components (UI, layout, navigation)
config/ # Site and content configuration
lib/ # Utilities, content loader, metadata helpers
First Steps
- Edit site config — Open
src/config/directory.config.tsand set your site name, description, and SEO settings - Replace content — Delete the placeholder files in
content/and add your own MDX files - Customize theme — Edit CSS variables in
src/app/globals.cssto match your brand colors
Available Commands
| Command | Description |
|---------|-------------|
| pnpm dev | Start development server |
| pnpm build | Build for production |
| pnpm start | Start production server |
| pnpm lint | Run ESLint |
Next Steps
Read the "Adding and Managing Content" guide to learn how to create your first real content, or the "Customizing Your Site" guide to personalize the look and feel.
Tagged with
More Guides
View allAgentic vs AI Trading: What Actually Executes?
Every "AI trading" tool is not agentic. Here is the clean line between signal generators and autonomous executors, with examples from the directory.
How to Vet an Agentic Trading Tool
A practical checklist for evaluating AI trading agents: custody, guardrails, execution rails, transparency, and costs — before you connect your brokerage.
What Is Agentic Trading? The 2026 Explainer
Agentic trading is AI that can actually place and manage orders on your brokerage account. Here is what the term means, how it works, and why 2026 was the year it went mainstream.