Getting Started

Getting Started

Welcome to Launchapp.dev! This guide will walk you through setting up the project locally.

Requirements

  • Node.js >= 18
  • pnpm >= 10.6.5

Steps

  1. Clone the repository:
git clone <repo-url> && cd project-starter
  1. Install dependencies:
pnpm install
  1. Copy the example environment variables:
cp .env.example .env.local
  1. Verify your tool versions:
node -v pnpm -v
  1. Start the development servers:
pnpm dev

On first run you should see output similar to:

> web@ dev /workspace/launchapp.dev-landing/apps/web > react-router dev ➜ Local: http://localhost:5173/ ➜ Network: use --host to expose ➜ press h + enter to show help

That's it! You're ready to hack.

For coding standards and workflow tips, see our Global Rules.